-
Notifications
You must be signed in to change notification settings - Fork 11
/
webpack.dev.config.js
79 lines (77 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
/* globals __dirname */
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
entry: {
'app/index': './src/app/index.vue.js',
'app/common': ['mapv', 'vue', 'element-ui', 'vue-material']
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist')
},
devServer: {
contentBase: './dist',
hot: true,
inline: true
},
devtool: 'eval-source-map',
cacheBusting: 'false',
module: {
rules: [
//
{
test: /\.vue$/,
loader: 'vue-loader',
exclude: /node_modules/
}, {
test: /\.(jsx|js)$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['url-loader', 'css-loader', 'sass-loader']
})
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader']
})
},
{
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
loader: 'url-loader'
}
]
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/page/index.html',
hash: false,
chunks: ['app/index', 'app/common']
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'app/common', // Specify the common bundle's name.
minChunks: Infinity
}),
new ExtractTextPlugin({
filename: (getPath) => {
return getPath('static/css/[name].css').replace('css/js', 'css');
},
allChunks: true
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"development"'
}
}),
]
};