In my vue project I have some globally defined css, like a reset file etc. I load this css using the following in my vue.config:
css: {
loaderOptions: {
sass: {
data: `
@import "@/assets/styles/styles.scss";
`,
},
},
},
When i look in the browser styles it seems like the css is overwriting itself 50+ times.
I'm wondering what is causing this behaviour?