Hey, I'm new to Umbraco. Using v12, simple website using Atomic Starter Kit.
Whenever I make a simple change (let's say in Header.cshtml, making a link bold), in VS Code changes don't show in view when I refresh.
Also, when doing a
dotnet build
command, all changes in cshtml from starter kits get undone (like a revert to default)
How do I customize the cshtml code, based on a starter kit?
Solutions tried
1. Disabling Cache in Chrome -> Network -> Disable Cache
2. Changed values for this one, with no effect
<!-- Remove RazorCompileOnBuild and RazorCompileOnPublish when not using ModelsMode InMemoryAuto -->
<RazorCompileOnBuild>true</RazorCompileOnBuild>
3. Switched this between on off with no effect (I think it words on js and css anyway, not cshtml)
"RuntimeMinification": {
"UseInMemoryCache": false,
"CacheBuster": "Timestamp"
}
I got the change to appear from time to time, so I guess it's something with time based caching in DB, and don't know how to disable it