-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.babel.js
108 lines (106 loc) · 2.31 KB
/
webpack.config.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* eslint-env node */
// webpack-specific
import WebpackNodeExternals from "webpack-node-externals";
import { isProd, src, dist, commonConfig, commonClientConfig, commonClientLoaders } from "./build-helpers";
// webpack configs
module.exports = [
// Client (legacy)
{
name: "client-legacy",
output: {
filename: isProd ? "js/[name].[chunkhash:8].js" : "js/[name].js",
chunkFilename: isProd ? "js/[name].[chunkhash:8].js" : "js/[name].js",
path: dist("client"),
publicPath: "/"
},
module: {
rules: [
{
test: /\.m?js$/i,
exclude: /node_modules/i,
use: [
{
loader: "babel-loader",
options: {
envName: "clientLegacy"
}
}
]
},
...commonClientLoaders
]
},
...commonClientConfig
},
// Client (modern)
{
name: "client-modern",
output: {
filename: isProd ? "js/[name].[chunkhash:8].mjs" : "js/[name].mjs",
chunkFilename: isProd ? "js/[name].[chunkhash:8].mjs" : "js/[name].mjs",
path: dist("client"),
publicPath: "/"
},
module: {
rules: [
{
test: /\.m?js$/i,
exclude: /node_modules/i,
use: [
{
loader: "babel-loader",
options: {
envName: "clientModern"
}
}
]
},
...commonClientLoaders
]
},
...commonClientConfig
},
// Server
{
target: "node",
name: "server",
entry: {
server: src("server", "index.js")
},
output: {
filename: "index.js",
path: dist("server")
},
module: {
rules: [
{
test: /\.m?js$/i,
exclude: /node_modules/i,
use: [
{
loader: "babel-loader",
options: {
envName: "server"
}
}
]
},
{
test: /\.(c|le)ss$/i,
use: "null-loader"
}
]
},
resolve: {
alias: {
"Components": src("client", "components"),
"Styles": src("client", "styles"),
"Helpers": src("server", "helpers")
}
},
externals: [
WebpackNodeExternals()
],
...commonConfig
}
];