Skip to content

Commit e1ff186

Browse files
Fix Webpack 'vue-loader' Module not found error
Version 15.9.7 has a bug where Webpack cannot find the module: vuejs/vue-loader#1859 I have run into this MODULE_NOT_FOUND bug just about every time that I upgrade one of my older projects to Laravel Mix 6. Version 15.9.8 fixes that: https://github.com/vuejs/vue-loader/releases?q=v15.9.8&expanded=true
1 parent b33f7c5 commit e1ff186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/Vue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module.exports = class Vue extends Component {
6464

6565
let dependencies = [
6666
this.version === 2 ? 'vue-template-compiler' : '@vue/compiler-sfc',
67-
this.version === 2 ? 'vue-loader@^15.9.7' : 'vue-loader@^16.2.0'
67+
this.version === 2 ? 'vue-loader@^15.9.8' : 'vue-loader@^16.2.0'
6868
];
6969

7070
if (this.options.extractStyles && this.options.globalStyles) {

0 commit comments

Comments
 (0)