Javascript – Automatically import SCSS file for every Vue component
I trying do import globally an variables.scss file my vue.config.js like the following: module.exports = { css: { loaderOptions: { scss: { additionalData: `@import "@/styles/variables.scss";` }, } } } variables.scss $dark-bg: #1C2537; and vue file where i try use it…