I am currently working on a new vue-cli project and have successfully installed the Pure.CSS framework using npm install purecss --save
. However, I am struggling to seamlessly integrate, import, or load the css framework into my project. I am unsure of where exactly within my project structure I should place my regular css files (e.g. mystyle.css). My assumption is that they should be stored in the src/assets
directory based on the Project Structure provided by vue-cli.
My main goal is to consolidate all css files into a single file, like app.css or main.css. How can I achieve this?