-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.production.config.js
59 lines (56 loc) · 1.55 KB
/
webpack.production.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
var webpack = require('webpack');
var path = require('path');
var node_modules_dir = path.resolve(__dirname, 'node_modules');
var ngAnnotatePlugin = require('ng-annotate-webpack-plugin');
var config = {
entry: {
app: path.resolve(__dirname, 'app/core/bootstrap.js'),
vendor: ['angular', 'angular-ui-router', 'oclazyload']
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.js$/,
loader: 'babel',
exclude: [node_modules_dir]
}, {
test: /\.css$/,
loader: 'style!css',
exclude: [node_modules_dir]
}, {
test: /\.scss$/,
loader: 'style!css!sass',
exclude: [node_modules_dir]
}, {
test: /\.(png|jpg)$/,
loader: 'url?limit=25000',
exclude: [node_modules_dir]
}, {
test: /\.html$/,
loader: 'raw',
exclude: [node_modules_dir]
}]
},
plugins: [
new ngAnnotatePlugin({
add: true
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
filename: 'vendor.bundle.js'
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.DefinePlugin({
ON_DEMO: process.env.NODE_ENV === 'demo'
})
]
};
module.exports = config;