-1👍
Just hit the same issue, turned out I was omitting the semicolon in my global definitions.
Try giving this a go:
{
test: /\.scss$/,
use: [
"vue-style-loader",
"css-loader",
{
loader: "sass-loader",
options: {
data: `@import "@/_var.scss;` //<- Semicolon here.
}
}
]
}
- [Vuejs]-VueJS and Flask sessions: new session each request
- [Vuejs]-Laravel group by day and paginate?
Source:stackexchange.com