I am developing an app first time with VueJS 2 + Webpack And I have created a style.css file that I want to include globaly into index.html file in the root of my app
I have tried loading it from different folders (src, src/assets, root, src, components, node_modules) but as a result i always get 404 error for the specific file.
I have also tried all sorts of paths ../src , /src..., ./src... makes no difference..
What is the correct way to include a style.css file into your project? Where it should be located ? And how should I call it?