You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After removing it, my spa only requires the css files from the views, not the "main.hash.js" file (which contains the styles from global components and such).
How can I fix this? While still using hashed files?
Thanks for the help!!
The text was updated successfully, but these errors were encountered:
Until now, the only solution I can think of is disabling the css extraction on vue.config.js, which includes the css directly on the main.js file, but I wanted separate files.
After building a vue 2 application we usually have a folder like this:
This index.html file is not going to be imported from single-spa, so I've removed the HtmlWebpackPlugin as recommend, which skips the index.html.
However, this index.html file imported the global styles generated from vue.
<script defer="defer" src="/main.82db85a9.js" nomodule>
After removing it, my spa only requires the css files from the views, not the "main.hash.js" file (which contains the styles from global components and such).
How can I fix this? While still using hashed files?
Thanks for the help!!
The text was updated successfully, but these errors were encountered: