I have used vue cli to create a custom vue project. I included router and vuex. I have bootstrap.min.css and styles.css in src/assets/css/
in my App.vue styles tag I use the following:
@import './src/assets/css/bootstrap.min.css'; @import './src/assets/css/styles.css';
when I do npm run serve, these files are served as html. It feels like I have tried a million variations of this import path but nothing works. I have wrapped it in a URL, I have 'required' it in main.js. Nothing works.
@import ‘~@/assets/css/bootstrap.min.css’
, if file does't exists, your terminal should output some errors. – joaner