The production site is ok. URLs are using the baseurl I set in the config.toml.
But the preview builds are also using this baseurl (they shoud use the $DEPLOY_PRIME_URL URL instead). So when I go on a preview build (ex: https://5b7066a0b13fb15b96c20f1e--mysite.netlify.com/), the CSS file used is https://mysite.netlify.com/css/style.css instead of https://5b7066a0b13fb15b96c20f1e--mysite.netlify.com/css/style.css.
It’s difficult to pinpoint the problem without a repo to reproduce the issue. I have been using DEPLOY_PRIME_URL for both branch and preview deploys on Netlify and they work fine.
{{ "<!-- combined, minified CSS -->" | safeHTML }}
<link href="{{ .Site.BaseURL }}css/style.css" rel="stylesheet"{{ if not .Site.Params.disable_sri }} integrity="{{ .Site.Data.sri.style}}" crossorigin="anonymous"{{ end }}>
It’s not the best practice to manually concat the BaseURL like that, because that expects your BaseURL string value to always end in / (which is not the case if you are using the $DEPLOY_PRIME_URL directly).
Related – I use this wrapper shell script to add trailing slash to the $DEPLOY_PRIME_URL, just because I am OCD about having the BaseURL always end with a slash.
That’s odd. I’m just referring to what I read in Netlify’s docs. Maybe their documentation is outdated and it works somehow, or hugo is using some kind of workaround like the one suggested in the docs, idk.
What works for me is having my own gulp build script (you can use something else, I’m using gulp for other things too) where I set the appropriate hugo flags based on Netlify environment variables. This way, the build command is the same for every context.