-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
199 lines (192 loc) · 5.79 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
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
/* eslint-env node */
const CopyWebpackPlugin = require("copy-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const webpack = require("webpack");
const path = require("path");
const BUILD_DIR = path.resolve(__dirname, "build");
const PUBLIC_DIR = path.resolve(BUILD_DIR, "public");
const SRC_DIR = path.resolve(__dirname, "src");
const NODE_MODULES_DIR = path.resolve(__dirname, "node_modules");
const APP_ENV = process.env.APP_ENV || "production";
let indexPath = "index.jsx";
switch (APP_ENV) {
case "dev":
indexPath = "index_dev.jsx";
break;
case "staging":
indexPath = "index_staging.jsx";
break;
case "test":
indexPath = "index_test.jsx";
break;
}
const withSourceMap = function(url) {
const loader = {
loader: url,
options: {}
}
if (APP_ENV === 'production')
loader.options.sourceMap = true;
return loader;
};
//we collect static files from various places
const staticPaths = ["web/static/"];
const copyPlugins = staticPaths.map(function(path) {
return new CopyWebpackPlugin({patterns: [
{
from: path,
to: "../",
toType: "dir",
}
]});
});
let config = {
target: "web",
context: SRC_DIR,
resolve: {
fallback: { "buffer": require.resolve("buffer"), process: 'process/browser' },
symlinks: false,
extensions: [
// if an import has no file ending, they will be resolved in this order
".tsx",
".ts",
".jsx",
".js"
],
modules: [SRC_DIR, NODE_MODULES_DIR]
},
entry: {
[`app`]: SRC_DIR + `/web/${indexPath}`
},
module: {
rules: [
// make sure the CSS rules are the first two rules, as we replace
// them below for the production config
// BEGIN(CSS) DO NOT MOVE
{
test: /\.(scss|sass)$/,
use: [
"style-loader",
withSourceMap("css-loader"),
withSourceMap("sass-loader")
]
},
{
test: /\.css$/,
use: ["style-loader", withSourceMap("css-loader")]
},
// END(CSS) DO NOT MOVE
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
type: 'asset/resource'
},
{
test: /\.(yaml|yml)$/,
use: ["json-loader", "yaml-loader"]
},
{
test: /\.[jt]sx?$/,
include: [SRC_DIR],
use: "babel-loader"
},
]
},
output: {
path: PUBLIC_DIR,
filename: "[name].js",
library: "[name]",
libraryTarget: "umd",
publicPath: "/public/"
},
plugins: [
...copyPlugins,
new webpack.ProvidePlugin({
process: 'process/browser',
Buffer: ['buffer', 'Buffer'],
}),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: "[name].css",
chunkFilename: "[id].css"
})
]
};
if (APP_ENV === "production") {
config = {
...config,
mode: "production",
plugins: [
...config.plugins,
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify("production"),
COMMIT_SHA: JSON.stringify(
process.env.CI_COMMIT_SHA ||
process.env.COMMIT_SHA ||
"unknown"
)
})
],
module: {
...config.module,
rules: [
// make sure the CSS rules are the first two
{
test: /\.(scss|sass)$/,
use: [
MiniCssExtractPlugin.loader,
withSourceMap("css-loader"),
withSourceMap("sass-loader")
]
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
withSourceMap("css-loader")
]
},
...config.module.rules.slice(2)
]
}
};
} else {
config = {
...config,
mode: "development",
devtool: "cheap-module-source-map",
devServer: {
// enable Hot Module Replacement on the server
host: '0.0.0.0',
hot: true,
// match the output `publicPath`
static: {
publicPath: "/",
directory: path.join(process.cwd(), "src/web/static"),
},
//always render index.html if the document does not exist (we need this for correct routing)
historyApiFallback: true,
// we enable CORS requests (useful for testing)
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods":
"GET, POST, PUT, DELETE, PATCH, OPTIONS",
"Access-Control-Allow-Headers":
"X-Requested-With, content-type, Authorization"
}
},
plugins: [
...config.plugins,
new webpack.DefinePlugin({
"process.env.NODE_ENV": '"development"',
COMMIT_SHA: JSON.stringify(
process.env.CI_COMMIT_SHA ||
process.env.COMMIT_SHA ||
"unknown"
)
})
//new BundleAnalyzerPlugin()
]
};
}
module.exports = config;