Smidge cache issue

Hey all,

I have some issues with Smidge on my Umbraco 9 solution. When i’m working on it locally and make some changes in the css/js files. I need to rebuild it before it’s visible in the browser (normally a refresh is working). I can’t find a lot of info about smidge with umb 9. So i hope someone can help me out.

appsettings.json

"RuntimeMinification": {
    "UseInMemoryCache": false,
    "CacheBuster": "Timestamp" //I have tried all the three values here (Version, AppDomain and Timestamp)
  },

My .cshtml file

@using Umbraco.Cms.Web.Common.PublishedModels;
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage
@using Smidge
@{
Layout = null;
SmidgeHelper.CreateJsBundle("inline-js-bundle").RequiresJs("~/scripts/jquery.js", "~/scripts/bootstrap.js", "~/scripts/script.js");
SmidgeHelper.CreateCssBundle("inline-css-bundle").RequiresCss("~/css/bootstrap.min.css", "~/css/style.min.css");
}
<!DOCTYPE html>
<html lang="da">
<head>

@await SmidgeHelper.JsHereAsync("inline-js-bundle")
@await SmidgeHelper.CssHereAsync("inline-css-bundle")
<title>Page Title</title>

</head>
<body>
@RenderBody()

 </body>
 </html>

Any suggestions here?


This is a companion discussion topic for the original entry at https://our.umbraco.com/forum/107906-smidge-cache-issue