piral-vue
Version:
Plugin for integrating Vue@2 components in Piral.
20 lines (15 loc) • 359 B
JavaScript
const { VueLoaderPlugin } = require('vue-loader');
const vueLoader = require.resolve('vue-loader');
module.exports =
(options = {}) =>
(config) => {
config.plugins.push(new VueLoaderPlugin());
config.module.rules.unshift({
test: /\.vue$/,
use: {
loader: vueLoader,
options,
},
});
return config;
};