[Vuejs]-How to add external css and scss with bootstrap 4 in vue js 3 application?

0👍

For example, you can store your css files within the src / assets folders. Then you can import these files in the main.js file.

like below;

import "./assets/main.css" 

Leave a comment