I am creating a 1 file component in Vue within my Laravel (test) project. But i use less for the css so the css part is in a different file. Now I want to include this file but without any luck. I try to look on stack overflow but am not sure if am searching incorrect or that I am doing something that I am not supposed to do.
What i try to do is
<style src="css/sidebar.css"></style>
I use the same logic for the image
<img class="flex-item" src="img/Home-icon.png">
But when i do "npm run dev" I get this error
So I thought this maybe wil work:
<style src="../public/css/sidebar.css"></style>
but then i get the same error but of cours with different path.
So I am a bit lost right now. Anyone that can help me with this?