We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As mentioned by @franciscolourenco in #32 🙏 the documentation could use some update to include the recommended way of configuring webpack with vue.js.
// vue.config.js module.exports = { chainWebpack: config => { const moduleTypes = ['vue-modules', 'vue', 'normal-modules', 'normal'] moduleTypes.forEach(type => config.module .rule('scss') .oneOf(type) .use('@epegzz/sass-vars-loader') .loader('@epegzz/sass-vars-loader') .options({ syntax: 'scss', files: [path.resolve(__dirname, './src/styles/colors.js')], }) ) }, }
Originally posted by @franciscolourenco in #32 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As mentioned by @franciscolourenco in #32 🙏 the documentation could use some update to include the recommended way of configuring webpack with vue.js.
Originally posted by @franciscolourenco in #32 (comment)
The text was updated successfully, but these errors were encountered: