forked from sin-tanaka/vue-quagga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
46 lines (40 loc) · 986 Bytes
/
webpack.dev.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const path = require('path');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const htmlWebpackPlugin = new HtmlWebpackPlugin({
template: path.join(__dirname, 'examples/src/index.html'),
filename: './index.html',
});
const vueLoaderPlugin = new VueLoaderPlugin();
module.exports = {
mode: 'development',
entry: path.join(__dirname, 'examples/src/index.js'),
plugins: [htmlWebpackPlugin, vueLoaderPlugin],
module: {
rules: [
{
test: /\.css$/,
use: ['vue-style-loader', 'css-loader'],
},
{
test: /\.vue$/,
loader: 'vue-loader',
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
},
},
],
},
devServer: {
port: 8001,
},
};