Reputation: 39
I am trying to import scss file from assets to components , getting error show that ,
@import "@/assets/scss/_globvar.scss";this the error i am getting
" Module build failed (from ./node_modules/sass-loader/dist/cjs.js): SassError: Can't find stylesheet to import "
files structure
Upvotes: 2
Views: 6479
Reputation: 41
Prefix path ~
tells webpack to search through node_modules. link
You may need to use relative path
or path alias
Upvotes: 0