I recently migrated a project originally templated in AspNetCore 7.0 Blazor WASM to AspNetCore 8.0 following Microsoft's guidance. Things work, except when the pages load, the browser can't find the "{ASSEMBLY NAME}.styles.css" file that is supposed to be generated according to the docs on Blazor CSS Isolation. I want to debug why this file isn't generated, but I can't find anything on what to check when that file is NOT magically generating. (NOTE: The base path for static web assets has not been changed, automatic bundling is not disabled, and CSS isolation is not disabled.)
What do I check when the {ASSEMBLY NAME}.styles.css file is not generated?