I am developing an application for the first time with VueJS 2 + Webpack And I created a style.css file that I want to include globaly in the index.html file in the root of my application
I tried to load it from different folders (src, src / assets, root, src, components, node_modules), but as a result I always get a 404 error for a particular file.
I also tried all kinds of ways .. / src, / src ...,. / Src ... doesn't matter.
What is the correct way to include a style.css file in your project? Where should it be located? And what should I call it?
source share