ERROR TypeError: Cannot read property 'match' of undefined
- clear npm cache
delete package-lock.json.
npm cache clear --force
and try to run the command:
rm -rf node_modules
rm package-lock.json
npm cache clear --force
npm install
This is a recent bug in the vuetify-loader (see issue #101). The bug has already been fixed and you can temporarily fix this manually by changing the following file.
node_modules/vuetify-loader/lib/plugin.js
at row #6
See change:
- this.options = options
+ this.options = options || {}