1π
The Link you posted mentions you need sass-loader@^7.0.0
.
// Requires sass-loader@^7.0.0
While you are using "sass-loader": "^6.0.6"
.
The issue you are facing came up on github issues a few times and is most likely related to sass version.
- remove
sass
andsass-loader
from your package.json - run
npm i
oryarn
- run
npm i sass sass-loader@^7.0.0
oryarn add sass sass-loader@^7.0.0
- run
npm run dev
π€oshell
- [Vuejs]-Object is possibly 'undefined' in Vuex mutation with TypeScript
- [Vuejs]-Iterating through nested objects with v-for?
Source:stackexchange.com