-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
126 lines (116 loc) · 3.15 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const path = require('path')
const webpack = require('webpack')
const TerserPlugin = require('terser-webpack-plugin')
const isDevServer = process.argv.find(v => v.includes('webpack-dev-server'))
module.exports = (env, argv) => {
const webpackMode = argv.mode || 'development'
const appTarget = env.APP_TARGET || 'dev'
console.log(`Webpack mode: ${webpackMode}`)
console.log(`Application target: ${appTarget}`)
// Replace env-related modules depending on the APP_TARGET env variable.
// Should be used only for conditional config files inclusion.
const configReplacementPlugin = new webpack.NormalModuleReplacementPlugin(/(.*)-APP_TARGET(\.*)/, function(resource) {
const r = resource.request.replace(/-APP_TARGET/, `-${appTarget}`)
console.log(`Replace module '${resource.request}' with '${r}'`)
resource.request = r
})
const entries = {
'app': './js/client.js',
}
const serverEntries = {
'server': './js/server.js',
'test': './test/test.js',
}
let config = {
target: 'web',
// Dev mode web server config
devServer: {
inline: true,
port: 8083,
host: '0.0.0.0',
publicPath: '/build',
historyApiFallback: true,
contentBase: path.resolve(__dirname, 'web'),
watchContentBase: true,
disableHostCheck: true,
},
entry: entries,
module: {
rules: [
{
test: /\.js$/,
loaders: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: [
'style-loader', // Load styles from JS
'css-loader', // Ability to import CSS in JS module
'postcss-loader', // Add CSS prefixes
'sass-loader?sourceMap', // Compile SCSS to CSS
],
},
{
test: /\.css$/,
use: [
// 'style-loader',
// MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
],
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'url-loader',
],
},
{
test: /\.(woff|woff2|eot|ttf|svg)$/,
loader: 'file-loader?name=fonts/[name].[ext]',
},
],
},
optimization: {
},
// Where to put compiled JS
output: {
path: path.resolve(__dirname, 'web/build'),
filename: '[name].js',
},
plugins: [
configReplacementPlugin,
],
}
if (webpackMode === 'production') {
// Add JS uglifier and CSS optimization in prod mode
config.optimization.minimizer = [
new TerserPlugin(),
]
}
let serverConfig = {
target: 'node',
entry: serverEntries,
module: {
rules: [
{
test: /\.js$/,
loaders: ['babel-loader'],
exclude: /node_modules/,
},
],
},
// Where to put compiled JS
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js',
},
plugins: [
configReplacementPlugin,
],
devtool: false,
}
// Dev server don't want to reload pages if a node configuration returned
return isDevServer ? config : [config, serverConfig]
}