Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
setup vue-loader
  • Loading branch information
kajan committed Feb 12, 2021
1 parent f21f782 commit 72517eb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions AspNetCoreVueMpa.Web/ClientApp/webpack.config.js
@@ -0,0 +1,15 @@
const VueLoaderPlugin = require('vue-loader/lib/plugin');

module.exports = {
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
}
]
},
plugins: [
new VueLoaderPlugin(),
]
}

0 comments on commit 72517eb

Please sign in to comment.