forked from N3-components/N3-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·50 lines (48 loc) · 1.13 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
var webpack = require('webpack')
var path = require('path')
module.exports = {
entry: ['babel-polyfill', './docs/index.js'],
output: {
path: './docs/static',
publicPath: './docs/static/',
filename: 'build.js'
},
resolve: {
extensions: ['', '.js', '.vue', '.css'],
root: path.resolve('./')
},
module: {
loaders: [{ test: /\.vue$/, loader: 'vue' },
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader'
},
{
test: /\.js$/,
exclude: /node_modules|vue\/src|vue-router\/|vue-loader\/|vue-hot-reload-api\//,
loader: 'babel'
},
{test: /\.less$/, loader: 'style-loader!css-loader!less-loader!autoprefixer'},
{test: /\.css$/, loader: 'style-loader!css-loader!autoprefixer'}
]
},
babel: {
presets: ['es2015']
},
devtool: 'source-map'
}
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
}
})
]
}