Answer the question
In order to leave comments, you need to log in
How to include SCSS in vue.config.js for Vue CLI?
Hi all!
Need help with styling. I'm building a project on vue cli (vue create...) Everything I've
tried doesn't work. The current files look like this:
vue.config.js
const path = require("path");
module.exports = {
pluginOptions: {
"style-resources-loader": {
preProcessor: "sass",
patterns: [path.resolve(__dirname, "./src/assets/sass/utils/*.scss")] //- здесь ресет, переменные и миксины
}
}
};
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
SassError: Undefined variable: "$white".
on line 26 of D:\Development\Vue-cli\next-po\src\components\Footer.vue
>> color: $white;
module.exports = {
css: {
loaderOptions: {
scss: {
prependData: `@import "[email protected]/assets/sass/base.scss";`
}
}
}
};
./src/assets/sass/base.scss
that collects imports of mixins and variables. I would like to connect it too, but no way. Answer the question
In order to leave comments, you need to log in
VueJS: where is the best place to store css, in .vue components or main.css?
In fact, they are already preconfigured. The internal webpack config is configured to use them.
Do you have bootloaders installed?
npm install -D sass-loader node-sass
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question