-
Notifications
You must be signed in to change notification settings - Fork 176
/
webpack.config.js
67 lines (63 loc) · 1.52 KB
/
webpack.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
var vue = require('vue-loader')
var webpack = require("webpack")
var ExtractTextPlugin = require("extract-text-webpack-plugin")
var cssLoader = ExtractTextPlugin.extract("style-loader", "css-loader")
module.exports = {
entry: {
app: './src/app.js'
},
output: {
path: './build',
publicPath: '/build/',
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.vue$/,
loader: 'vue'
},
{
test: /\.js$/,
// excluding some local linked packages.
// for normal use cases only node_modules is needed.
exclude: /node_modules|vue\/src|vue-router\/|vue-loader\/|vue-hot-reload-api\//,
loader: 'babel'
},
{ test: /\.css$/, loader: cssLoader }
]
},
// vue: {
// loaders: {
// css: ExtractTextPlugin.extract("css"),
// stylus: ExtractTextPlugin.extract("css!stylus")
// }
// },
devtool: "#source-map",
babel: {
presets: ['es2015'],
plugins: ['transform-runtime']
}
}
if (process.env.NODE_ENV === 'production') {
delete module.exports.devtool
module.exports.plugins = [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.optimize.OccurenceOrderPlugin()
// new ExtractTextPlugin("build.css")
]
} else {
// module.exports.plugins = [
// new ExtractTextPlugin("build.css")
// ]
// module.exports.devtool = '#source-map'
}