-
Notifications
You must be signed in to change notification settings - Fork 1
/
production.ssr.babel.js
89 lines (87 loc) · 2.18 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
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.client';
import { filter } from 'lodash';
const allowedPlugin = (plugin, key) => {
switch (key) {
case 'reactLoadablePlugin':
return enableDynamicImports;
case 'bundleAnalyzerPlugin':
return analyzeBundle;
case 'manifestPlugin':
return false;
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/middleware.js'],
externals: [
// 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: 'middleware.built.js',
libraryTarget: 'commonjs'
},
plugins: [...filter(basePlugins, allowedPlugin)],
module: {
rules: [
{
test: /\.js|jsx$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: babelOpts
}
},
{
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'
}
}
]
}
]
}
});