-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
108 lines (102 loc) · 3.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const nodeExternals = require('webpack-node-externals');
module.exports = (env, argv) => {
const plugins = [
new MiniCssExtractPlugin({
filename: "/css/[name].css",
chunkFilename: "/css/manifest.zippypoll.css"
}),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("development"),
BROWSER: JSON.stringify(true)
}
})
];
const module = {
rules: [
{
test: /(\.js|\.jsx)$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
query: {
presets: ['env', { "targets": {"browsers": ["last 2 versions"]}}],
presets: ['react', 'es2015', 'stage-1'],
plugins: ['transform-runtime']
}
},
{
test: /\.(css|sass|scss)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
autoprefixer: true,
sourceMap: true
}
},
{
loader: 'sass-loader',
options: {
sourceMap: true
}
}
]
}
]
};
const resolve = {
alias: {
Sass: path.resolve(__dirname, './src/sass/'),
Components: path.resolve(__dirname, './src/js/components/')
},
extensions: ['*', '.scss', '.css', '.js', '.jsx', '.json']
};
if( argv.buildmode === "backend" ) {
return {
target: "node",
entry: {
app: ["./src/server/server.js"]
},
output: {
filename: 'server.js',
path: path.resolve(__dirname, "./src/dist/"),
},
externals: [nodeExternals()],
resolve,
module,
plugins
}
}
if(process.env.NODE_ENV === 'production') {
plugins.push(new OptimizeCssAssetsPlugin({cssProcessorOptions: { zindex: false, discardComments: { removeAll: true } }}));
plugins.push(new webpack.DefinePlugin({'process.env.NODE_ENV': JSON.stringify('production')}));
plugins.push(new webpack.EnvironmentPlugin({ NODE_ENV: 'production' }));
} else {
plugins.push(new webpack.DefinePlugin({'process.env.NODE_ENV': JSON.stringify('development')}));
plugins.push(new webpack.EnvironmentPlugin({ NODE_ENV: 'development' }));
}
return {
mode: argv.mode,
entry: {
'zippypoll': ['babel-polyfill', './src/js/index.js'],
},
resolve,
watchOptions: {
aggregateTimeout: 300,
poll: 1000
},
output: {
filename: 'scripts/[name].bundle.js',
path: path.resolve(__dirname, "./src/dist/"),
chunkFilename: '[name].bundle.js'
},
module,
plugins
}
};