mirror of
https://github.com/javaLuo/vue-flip-down.git
synced 2025-04-05 19:41:54 +08:00
29 lines
616 B
JavaScript
29 lines
616 B
JavaScript
var path = require('path');
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
|
|
module.exports = {
|
|
mode: 'development',
|
|
entry: path.join(__dirname, 'example', 'main.js'),
|
|
output: {
|
|
filename: 'bundle.js',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /.vue$/,
|
|
use: ['vue-loader'],
|
|
include: [path.join(__dirname, 'example')],
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
use: ['babel-loader'],
|
|
include: [path.join(__dirname, 'example')],
|
|
},
|
|
],
|
|
},
|
|
devServer: {
|
|
contentBase: path.join(__dirname, 'example'),
|
|
},
|
|
plugins: [new VueLoaderPlugin()],
|
|
};
|