-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.production.js
74 lines (69 loc) · 1.49 KB
/
webpack.production.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
const path = require('path'),
webpack = require('webpack'),
ExtractTextPlugin = require('extract-text-webpack-plugin'),
UglifyJSPlugin = require('uglifyjs-webpack-plugin');
let cssLoaders = [ 'style-loader', { loader: 'css-loader', options: { importLoaders: 1, minimize: true } } ];
cssLoaders.push({
loader: 'postcss-loader',
options: {
plugins: (loader) => [
require('autoprefixer')({
browsers: [ 'chrome >= 46', 'firefox >= 41' ]
})
]
}
});
let config = {
entry: [ './src/client.js', './public/style.css', './public/scss/main.scss' ],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'public')
},
resolve: {
modules: [ path.resolve(__dirname, 'src'), 'node_modules' ]
},
devtool: false,
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: [ 'babel-loader' ]
},
{
test: /\.css$/,
use: [ 'style-loader', { loader: 'css-loader', options: { importLoaders: 1 } }, 'postcss-loader' ]
},
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: { importLoaders: 2 }
},
'sass-loader',
'postcss-loader'
]
}
]
},
plugins: [
new ExtractTextPlugin({
filename: '[name].css',
disable: false
})
]
};
config.plugins.push(
new UglifyJSPlugin({
sourceMap: false
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin()
);
module.exports = config;