I am confused about this part in Vue even after reading the docs. How should I load assets from index.html? I tried referring to assets using different methods, here is the one I am trying now that is still not working
<link rel="stylesheet" href="../src/assets/css/magnific-popup.css">
<link rel="stylesheet" href="../src/assets/css/animate.css">
<link rel="stylesheet" href="../src/assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="../src/assets/css/slinky.min.css">
<link rel="stylesheet" href="../src/assets/css/slick.css">
<link rel="stylesheet" href="../src/assets/css/ionicons.min.css">
<link rel="stylesheet" href="../src/assets/css/bundle.css">
<link rel="stylesheet" href="../src/assets/css/style.css">
<link rel="stylesheet" href="../src/assets/css/responsive.css">
srcfolder will be bundled into the final package. If they are static and not imported by your templates/components when building, they are probably better off in thepublicfolder where you can reference them as stated in the docs: cli.vuejs.org/guide/…