-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
66 lines (65 loc) · 1.68 KB
/
webpack.dev.config.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const path = require("path");
const webpack = require("webpack");
module.exports = {
devtool: 'source-map',
entry: "./example/index.js",
output: {
path: path.resolve(__dirname, './example'),
publicPath: '/example/',
filename: 'bundle.js',
},
resolve: {
alias: {
'vue': 'vue/dist/vue.js'
}
},
module: {
rules: [{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test: /\.less$/,
use: [{
loader: "style-loader"
},
{
loader: "css-loader"
},
{
loader: "less-loader"
}
]
},
{
test: /\.js$/,
exclude: /node_modules|vue\/dist|vue-router\/|vue-loader\/|vue-hot-reload-api\//,
loader: 'babel-loader'
},
{
test: /\.(png|jpg|gif|ttf|svg|woff|eot)$/,
loader: 'url-loader',
query: {
limit: 10000,
name: '[name].[ext]?[hash]'
}
}
]
},
devServer: {
contentBase: path.join(__dirname, "example"),
port: 8088,
host: 'localhost',
stats: 'errors-only',
hot: true,
inline: true
},
plugins: [
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("development")
}
}),
new webpack.HotModuleReplacementPlugin()
]
};