-
Notifications
You must be signed in to change notification settings - Fork 18
/
production.ssr.babel.js
91 lines (89 loc) · 2.34 KB
/
production.ssr.babel.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
import nodeExternals from 'webpack-node-externals';
import merge from 'webpack-merge';
import path from 'path';
import config from '../config';
import babelOpts from './babel.config.ssr';
import { enableDynamicImports } from '../config';
import baseConfig, { basePlugins, analyzeBundle } from './base';
import { set, filter } from 'lodash';
const allowedPlugin = (plugin, key) => {
switch (key) {
case 'reactLoadablePlugin':
return enableDynamicImports;
case 'isomorphicPlugin':
return false;
case 'bundleAnalyzerPlugin':
return analyzeBundle;
default:
return true;
}
};
export default merge.strategy({
entry: 'replace',
plugins: 'replace',
module: 'replace',
optimization: 'replace'
})(baseConfig, {
context: null,
mode: 'development',
optimization: {
splitChunks: {
chunks: 'all',
name: true
}
},
target: 'node',
entry: ['./server/renderer/handler.js'],
externals: [
// images are handled by isomorphic webpack.
// html files are required directly
/\.(html|png|gif|jpg)$/,
// treat all node modules as external to keep this bundle small
nodeExternals()
],
output: {
path: path.join(__dirname, '..', process.env.OUTPUT_PATH, 'renderer'),
filename: 'handler.built.js',
libraryTarget: 'commonjs'
},
plugins: [...filter(basePlugins, allowedPlugin)],
module: {
rules: [
{
test: /\.js|jsx$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
// tell babel to uglify production server code for SSR rendering
options: set(babelOpts, 'presets[0][1].targets.uglify', true)
}
},
{
test: /\.scss$/,
exclude: [
path.resolve(__dirname, '../node_modules'),
path.resolve(__dirname, '../common/css/base')
],
use: [
{
loader: 'css-loader/locals',
options: {
modules: true,
minimize: false,
importLoaders: 0,
localIdentName: config.cssModulesIdentifier
}
},
{ loader: 'postcss-loader' },
{ loader: 'sass-loader' },
{
loader: 'sass-resources-loader',
options: {
resources: './common/css/resources/*.scss'
}
}
]
}
]
}
});