-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
117 lines (105 loc) · 2.74 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
const path = require('path');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const merge = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const commonConfig = {
module: {
rules: [{
test: /\.jsx?$/,
loader: 'babel-loader',
resolve: { extensions: ['.js', '.jsx'] },
exclude: [/node_modules/, /dist/],
query: {
presets: ['env', 'stage-0', 'react',]
}
},
{
test: /.(png|jpg|gif)$/,
use: 'url-loader',
}]
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
ignoreOrder: true,
}),
],
devtool: process.env.NODE_ENV === 'development' ? 'source-map' : false
}
const serverConfig = ({
mode: process.env.NODE_ENV,
entry: ['babel-polyfill', './src/server/index.js'],
output: {
path: path.join(__dirname, 'dist'),
filename: 'server.js'
},
watch: process.env.NODE_ENV === 'development',
target: 'node',
externals: [nodeExternals()],
node: {
__dirname: false
},
module: {
rules: [{
test: /\.s?css$/,
resolve: { extensions: [".css", ".scss"] },
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === 'development',
},
},
'css-loader',
'sass-loader',
'resolve-url-loader'
]
}]
},
})
const frontConfig = ({
mode: process.env.NODE_ENV,
entry: [
'babel-polyfill',
process.env.NODE_ENV === 'development' && 'webpack-hot-middleware/client',
'./src/client/index.js'
].filter(Boolean),
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js'
},
plugins: [
new webpack.DefinePlugin({
'process.env.STORAGE_URL': JSON.stringify(process.env.STORAGE_URL),
'process.env.SERVER_URL': JSON.stringify(process.env.SERVER_URL),
'process.env.EXTERNAL_CMS_URL': JSON.stringify(process.env.EXTERNAL_CMS_URL),
}),
new webpack.optimize.OccurrenceOrderPlugin(),
process.env.NODE_ENV === 'development' && new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
].filter(Boolean),
module: {
rules: [{
test: /\.s?css$/,
resolve: { extensions: [".css", ".scss"] },
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === 'development',
},
},
'css-loader',
'sass-loader',
'resolve-url-loader'
]
}]
},
})
module.exports = (env, argv) => merge.smart(
argv.buildType === "server" ? serverConfig : {},
argv.buildType === "front" ? frontConfig : {},
commonConfig,
);