Hello and hope all are safe, I have a browser reset.css file in /src/assets/css that will be used site wide in my vue project. So I figured would just import it into the /public/index.html via a . However this does not work and I see an error in the console - "The stylesheet http://localhost:8080/src/assets/css/styles.css was not loaded because its MIME type, “text/html”, is not “text/css”." I am using
<link rel="stylesheet" href="../src/assets/css/styles.css" type="text/css">
in the index.html file. I am using vue-cli3 and was wondering what is the accepted way of applying site wide css rule's and also the proper way of importing CDN link's? I dont see this scenerio addressed in vue-cli documentation. Thanks to all.