vue-loader fails to load vue-template-compiler
See original GitHub issueVersion
16.1.2
Reproduction link
https://github.com/tarkhil/vue-loader-error
Steps to reproduce
just run webpack
What is expected?
compiled js files
What is actually happening?
[webpack-cli] TypeError: The 'compilation' argument must be an instance of Compilation
at Function.getCompilationHooks (/home/tarkhil/tmp/billing/node_modules/webpack/lib/NormalModule.js:171:10)
at /home/tarkhil/tmp/billing/node_modules/vue-loader/lib/plugin-webpack5.js:36:70
at Hook.eval [as call] (eval at create (/home/tarkhil/node_modules/tapable/lib/HookCodeFactory.js:19:10), <anonymous>:100:1)
at Hook.CALL_DELEGATE [as _call] (/home/tarkhil/node_modules/tapable/lib/Hook.js:14:14)
at Compiler.newCompilation (/home/tarkhil/node_modules/webpack/lib/Compiler.js:943:26)
at /home/tarkhil/node_modules/webpack/lib/Compiler.js:984:29
at Hook.eval [as callAsync] (eval at create (/home/tarkhil/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:6:1)
at Hook.CALL_ASYNC_DELEGATE [as _callAsync] (/home/tarkhil/node_modules/tapable/lib/Hook.js:18:14)
at Compiler.compile (/home/tarkhil/node_modules/webpack/lib/Compiler.js:979:28)
at /home/tarkhil/node_modules/webpack/lib/Compiler.js:470:12
at Compiler.readRecords (/home/tarkhil/node_modules/webpack/lib/Compiler.js:821:11)
at /home/tarkhil/node_modules/webpack/lib/Compiler.js:467:11
at Hook.eval [as callAsync] (eval at create (/home/tarkhil/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:6:1)
at Hook.CALL_ASYNC_DELEGATE [as _callAsync] (/home/tarkhil/node_modules/tapable/lib/Hook.js:18:14)
at /home/tarkhil/node_modules/webpack/lib/Compiler.js:464:20
at Hook.eval [as callAsync] (eval at create (/home/tarkhil/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:15:1)
If it’s a config issue, it should be mentioned somewhere.
The same with vue-loader@14 yields
[webpack-cli] TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined
at new NodeError (node:internal/errors:278:15)
at validateString (node:internal/validators:123:11)
at Object.basename (node:path:1200:5)
at new module.exports (/home/tarkhil/tmp/billing/node_modules/vue-loader/lib/loader.js:32:25)
at Object.<anonymous> (/home/tarkhil/tmp/billing/webpack.config.js:8:2)
at Module._compile (/home/tarkhil/node_modules/v8-compile-cache/v8-compile-cache.js:192:30)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1137:10)
at Module.load (node:internal/modules/cjs/loader:973:32)
at Function.Module._load (node:internal/modules/cjs/loader:813:14)
at Module.require (node:internal/modules/cjs/loader:997:19) {
code: 'ERR_INVALID_ARG_TYPE'
}
And I have no idea what path is required
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:8 (2 by maintainers)
Top Results From Across the Web
vue-template-compile errors in console - Laracasts
Hello! Can somebody explain that in my Laravel/vue/vuetify application in console I got a lot of errors like: Copy Code ERROR in ....
Read more >Webpack 'vue-loader' compilation issues with ... - Stack Overflow
As part of pulling in vue-loader an initial error is thrown stating vue-template-compiler is a required dependency.
Read more >Getting Started - Vue Loader
The reason vue-template-compiler has to be installed separately is so that you can individually specify its version. Every time a new version of...
Read more >vue-template-compiler | Yarn - Package Manager
This package can be used to pre-compile Vue 2.0 templates into render functions to avoid runtime-compilation overhead and CSP restrictions.
Read more >vue-loader - npm
Start using vue-loader in your project by running `npm i vue-loader`. ... We need to compile the template using the Vue template compiler; ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@samipe
vue-loader
v16 +@vue/compiler-sfc
;vue-loader
v15 +vue-template-compiler
.@tarkhil What
@vue/cli
version do you use?I guess using an outdated version, upgrade to Vue CLI v4.5.10 and it should work.