Hi, I am running hugo with "serve", "--gc", "--source", "/site"
and include my JS resources this way:
{{ $jsDashboard := resources.Get "js/dashboard.js" | minify | fingerprint }}
<script type="text/javascript" id="script"
src="{{ $jsDashboard.Permalink }}" integrity="{{ $jsDashboard.Data.Integrity }}" crossorigin="anonymous"></script>
However, when I change something in my JS files hugo correctly mentions syncing changes, but no changes are shown in the HTML page until I kill/restart hugo manually.
I have browsers open with developer window, so cache disabled.
Ideas?