Anybody know how to make ide to identify the global scss import in vue.config.js?
Ulyssesyi opened this issue · 0 comments
Ulyssesyi commented
Import the global scss file in vue, it working but jetbrains tools and vscode can't autocomplete and click to jump
vue.config.js
module.exports = {
css: {
loaderOptions: {
scss: {
prependData: '@import "~@/variables.scss";',
},
},
},
};