0👍
I was able to resolve the problem by moving the custom loader into the *.vue
rule:
{
test: /\.vue$/,
use: [
'vue-loader',
{loader: myCustomLoader}
]
},
instead of using:
{
test: /\.vue$/,
loader: 'vue-loader'
},
which is the standard way of adding vue-loader
.
- [Vuejs]-Node.js/Express: Pass routes/ let other routes than root handle by the Single page application
- [Vuejs]-Axios request for one component on the server side
Source:stackexchange.com