You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@lucasvazq I have shared variables in my quasar v 2.0 application. And adding just importer didn't work for me. I had to use the following code in quasar.conf.js to make it working
// we have to keep both configuration to make shared variables working
scssLoaderOptions: {
additionalData: '@import "src/css/global/_mixins.scss";',
sassOptions: {
importer: jsonImporter({
convertCase: true,
}),
},
},
sassLoaderOptions: {
sassOptions: {
importer: jsonImporter({
convertCase: true,
}),
},
},
There are only webpack v1/v2 examples in documentation. Could you please update documentation also for webpack v5?
The text was updated successfully, but these errors were encountered: