-
Notifications
You must be signed in to change notification settings - Fork 5
/
razzle.config.js
234 lines (214 loc) · 6.59 KB
/
razzle.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/* eslint-disable @typescript-eslint/no-use-before-define */
const razzleHeroku = require('razzle-heroku')
// const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const isHeroku = require('is-heroku')
const CopyPlugin = require('copy-webpack-plugin')
module.exports = {
rules: {},
plugins: [
copyFiles,
removeFSClientSide,
useRuntimePortEnvironmentVariable,
// WebpackSplitChunksRazzlePlugin({
// // include both initial and async imports for chunking, not just initial
// chunks: 'all',
// // default is 3
// maxInitialRequests: Infinity,
// // default is 30000
// minSize: 0
// }),
// WebpackPerformanceHintsRazzlePlugin({
// // Use a custom assetFilter to not warn about big source maps or vendor bundle
// assetFilter: function (assetFilename) {
// const isSrcMap = /\.map$/.test(assetFilename)
// const isVendorBundle = /vendor/.test(assetFilename)
// return !(isSrcMap || isVendorBundle)
// }
// }),
{
name: 'less',
options: {
less: {
dev: {
javascriptEnabled: true,
sourceMap: true,
modules: false
},
prod: {
javascriptEnabled: true,
sourceMap: false,
modules: false
}
},
css: {
dev: {
sourceMap: true,
importLoaders: 1,
modules: false
},
prod: {
sourceMap: true,
importLoaders: 1,
modules: false
}
}
}
},
'babel-ts'
]
}
function copyFiles(config, env, webpack, options) {
if (env.target === 'node') {
config.plugins = [
...(config.plugins || []),
new CopyPlugin({
patterns: [
{
from: '**/iframeResizer.contentWindow*.js',
context: require('path').resolve(
__dirname,
'node_modules',
'iframe-resizer',
'js'
),
// from:
// 'node_modules/iframe-resizer/js/iframeResizer.contentWindow*.js',
to: 'public/vendors/iframe-resizer/[name].[ext]'
},
{
from: '**/**',
context: require('path').resolve(__dirname, 'public'),
to: 'public/[path][name].[ext]'
}
]
})
]
}
return config
}
function removeFSClientSide(config, env, webpack, options) {
const { target, dev } = env
// console.log('TARGET:', target)
// console.log('CONFIG:', config)
if (target === 'web') {
return Object.assign({}, config, {
node: { ...(config.node || {}), fs: 'empty' }
})
}
return config
}
function NoopRazzlePlugin() {
return function NoopRazzlePluginFunc(config) {
return config
}
}
function WebpackPerformanceHintsRazzlePlugin(pluginOptions) {
return function WebpackPerformanceHintsRazzlePluginFunc(config) {
return {
...config,
performance: {
...config.performance,
assetFilter: function (assetFilename) {
const isSrcMap = /\.map$/.test(assetFilename)
const isVendorBundle = /vendor/.test(assetFilename)
return !(isSrcMap || isVendorBundle)
}
}
}
}
}
/**
* Update config to use process.env.PORT provided at *runtime*, not build-time, which is the default behavior
*/
// https://github.com/jaredpalmer/razzle/issues/906#issuecomment-467046269
function useRuntimePortEnvironmentVariable(config, { target, dev }, webpack) {
const appConfig = Object.assign({}, config)
// @BUG: Do not inline certain env vars; https://github.com/jaredpalmer/razzle/issues/356
if (target === 'node') {
const idx = appConfig.plugins.findIndex(
(plugin) => plugin.constructor.name === 'DefinePlugin'
)
const { definitions } = appConfig.plugins[idx]
const newDefs = Object.assign({}, definitions)
delete newDefs['process.env.PORT']
delete newDefs['process.env.HOST']
delete newDefs['process.env.PUBLIC_PATH']
appConfig.plugins = [].concat(appConfig.plugins)
appConfig.plugins[idx] = new webpack.DefinePlugin(newDefs)
}
return appConfig
}
/**
* Remove specific env variables
*/
function removeCustomEnvVariables(names = []) {
return function removeVariables(config, { target, dev }, webpack) {
const appConfig = Object.assign({}, config)
// @BUG: Do not inline certain env vars; https://github.com/jaredpalmer/razzle/issues/356
if (target === 'node') {
const idx = appConfig.plugins.findIndex(
(plugin) => plugin.constructor.name === 'DefinePlugin'
)
const { definitions } = appConfig.plugins[idx]
const newDefs = Object.assign({}, definitions)
names.map((name) => {
delete newDefs['process.env.' + name]
})
appConfig.plugins = [].concat(appConfig.plugins)
appConfig.plugins[idx] = new webpack.DefinePlugin(newDefs)
}
return appConfig
}
}
/**
* Razzle Plugin to split common libraries into a chunk named 'vendor'.
* The idea is that this bundle will change way less often than the src code
* of this app, so will mean less average download size because vendor can be cached.
* Taken from https://github.com/jaredpalmer/razzle/tree/master/examples/with-vendor-bundle
*/
function WebpackSplitChunksRazzlePlugin(pluginOptions = {}) {
return function WebpackSplitChunksRazzlePluginFunc(
razzleConfigBefore,
{ target, dev },
webpack
) {
const config = Object.assign({}, razzleConfigBefore)
// Change the name of the server output file in production
if (target === 'web') {
// modify filenaming to account for multiple entry files
config.output.filename = dev
? 'static/js/[name].js'
: 'static/js/[name].[hash:8].js'
// I think these are the default that webpack sets
// https://webpack.js.org/plugins/split-chunks-plugin/#optimizationsplitchunks
const defaultSplitChunksConfig = {
chunks: 'async',
minSize: 30000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 5,
maxInitialRequests: 3,
automaticNameDelimiter: '~',
automaticNameMaxLength: 30,
name: true,
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true
}
}
}
config.optimization.splitChunks = {
...defaultSplitChunksConfig,
...config.optimization.splitChunks,
...pluginOptions
}
}
return config
}
}