forked from MarcelRaschke/hubs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
358 lines (348 loc) · 10.5 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
// Variables in .env and .env.defaults will be added to process.env
const dotenv = require("dotenv");
dotenv.config({ path: ".env" });
dotenv.config({ path: ".env.defaults" });
const fs = require("fs");
const path = require("path");
const selfsigned = require("selfsigned");
const webpack = require("webpack");
const cors = require("cors");
const HTMLWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
function createHTTPSConfig() {
// Generate certs for the local webpack-dev-server.
if (fs.existsSync(path.join(__dirname, "certs"))) {
const key = fs.readFileSync(path.join(__dirname, "certs", "key.pem"));
const cert = fs.readFileSync(path.join(__dirname, "certs", "cert.pem"));
return { key, cert };
} else {
const pems = selfsigned.generate(
[
{
name: "commonName",
value: "localhost"
}
],
{
days: 365,
algorithm: "sha256",
extensions: [
{
name: "subjectAltName",
altNames: [
{
type: 2,
value: "localhost"
},
{
type: 2,
value: "hubs.local"
}
]
}
]
}
);
fs.mkdirSync(path.join(__dirname, "certs"));
fs.writeFileSync(path.join(__dirname, "certs", "cert.pem"), pems.cert);
fs.writeFileSync(path.join(__dirname, "certs", "key.pem"), pems.private);
return {
key: pems.private,
cert: pems.cert
};
}
}
const defaultHostName = "hubs.local";
const host = process.env.HOST_IP || defaultHostName;
function matchRegex({ include, exclude }) {
return (module, chunks) => {
if (
module.nameForCondition &&
include.test(module.nameForCondition()) &&
!exclude.test(module.nameForCondition())
) {
return true;
}
for (const chunk of chunks) {
if (chunk.name && include.test(chunk.name) && !exclude.test(chunk.name)) {
return true;
}
}
return false;
};
}
const babelConfig = JSON.parse(
fs
.readFileSync(path.resolve(__dirname, ".babelrc"))
.toString()
.replace(/\/\/.+/g, "")
);
module.exports = (env, argv) => ({
node: {
// need to specify this manually because some random lodash code will try to access
// Buffer on the global object if it exists, so webpack will polyfill on its behalf
Buffer: false,
fs: "empty"
},
entry: {
index: path.join(__dirname, "src", "index.js"),
hub: path.join(__dirname, "src", "hub.js"),
scene: path.join(__dirname, "src", "scene.js"),
avatar: path.join(__dirname, "src", "avatar.js"),
link: path.join(__dirname, "src", "link.js"),
discord: path.join(__dirname, "src", "discord.js"),
cloud: path.join(__dirname, "src", "cloud.js"),
"whats-new": path.join(__dirname, "src", "whats-new.js")
},
output: {
filename: "assets/js/[name]-[chunkhash].js",
publicPath: process.env.BASE_ASSETS_PATH || ""
},
devtool: argv.mode === "production" ? "source-map" : "inline-source-map",
devServer: {
https: createHTTPSConfig(),
host: "0.0.0.0",
public: `${host}:8080`,
useLocalIp: true,
allowedHosts: [host],
headers: {
"Access-Control-Allow-Origin": "*"
},
before: function(app) {
// be flexible with people accessing via a local reticulum on another port
app.use(cors({ origin: /hubs\.local(:\d*)?$/ }));
// networked-aframe makes HEAD requests to the server for time syncing. Respond with an empty body.
app.head("*", function(req, res, next) {
if (req.method === "HEAD") {
res.append("Date", new Date().toGMTString());
res.send("");
} else {
next();
}
});
}
},
performance: {
// Ignore media and sourcemaps when warning about file size.
assetFilter(assetFilename) {
return !/\.(map|png|jpg|gif|glb|webm)$/.test(assetFilename);
}
},
module: {
rules: [
{
test: /\.html$/,
loader: "html-loader",
options: {
// <a-asset-item>'s src property is overwritten with the correct transformed asset url.
attrs: ["img:src", "a-asset-item:src", "audio:src", "source:src"]
}
},
{
test: /\.worker\.js$/,
loader: "worker-loader",
options: {
name: "assets/js/[name]-[hash].js",
publicPath: "/",
inline: true
}
},
{
// We reference the sources of some libraries directly, and they use async/await,
// so we have to run it through babel in order to support the Samsung browser on Oculus Go.
test: [path.resolve(__dirname, "node_modules/naf-janus-adapter")],
loader: "babel-loader",
options: babelConfig
},
{
test: /\.js$/,
include: [path.resolve(__dirname, "src")],
// Exclude JS assets in node_modules because they are already transformed and often big.
exclude: [path.resolve(__dirname, "node_modules")],
loader: "babel-loader"
},
{
test: /\.(scss|css)$/,
use: [
{
loader: MiniCssExtractPlugin.loader
},
{
loader: "css-loader",
options: {
name: "[path][name]-[hash].[ext]",
localIdentName: "[name]__[local]__[hash:base64:5]",
camelCase: true
}
},
"sass-loader"
]
},
{
test: /\.(png|jpg|gif|glb|ogg|mp3|mp4|wav|woff2|svg|webm)$/,
use: {
loader: "file-loader",
options: {
// move required assets to output dir and add a hash for cache busting
name: "[path][name]-[hash].[ext]",
// Make asset paths relative to /src
context: path.join(__dirname, "src")
}
}
},
{
test: /\.(svgi)$/,
use: {
loader: "svg-inline-loader"
}
},
{
test: /\.(wasm)$/,
type: "javascript/auto",
use: {
loader: "file-loader",
options: {
outputPath: "assets/wasm",
name: "[name]-[hash].[ext]"
}
}
},
{
test: /\.(glsl|frag|vert)$/,
use: { loader: "raw-loader" }
}
]
},
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: matchRegex({
include: /([\\/]node_modules[\\/]|[\\/]vendor[\\/])/,
exclude: /[\\/]node_modules[\\/]markdown-it[\\/]/
}),
priority: 50,
name: "vendor",
chunks: "all"
},
engine: {
test: /([\\/]src[\\/]workers|[\\/]node_modules[\\/](aframe|cannon|three))/,
priority: 100,
name: "engine",
chunks: "all"
}
}
}
},
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: env && env.BUNDLE_ANALYZER ? "server" : "disabled"
}),
// Each output page needs a HTMLWebpackPlugin entry
new HTMLWebpackPlugin({
filename: "index.html",
template: path.join(__dirname, "src", "index.html"),
chunks: ["vendor", "index"]
}),
new HTMLWebpackPlugin({
filename: "hub.html",
template: path.join(__dirname, "src", "hub.html"),
chunks: ["vendor", "engine", "hub"],
inject: "head",
meta: [
{
"http-equiv": "origin-trial",
"data-feature": "WebVR (For Chrome M62+)",
"data-expires": process.env.ORIGIN_TRIAL_EXPIRES,
content: process.env.ORIGIN_TRIAL_TOKEN
}
]
}),
new HTMLWebpackPlugin({
filename: "scene.html",
template: path.join(__dirname, "src", "scene.html"),
chunks: ["vendor", "engine", "scene"],
inject: "head",
meta: [
{
"http-equiv": "origin-trial",
"data-feature": "WebVR (For Chrome M62+)",
"data-expires": process.env.ORIGIN_TRIAL_EXPIRES,
content: process.env.ORIGIN_TRIAL_TOKEN
}
]
}),
new HTMLWebpackPlugin({
filename: "avatar.html",
template: path.join(__dirname, "src", "avatar.html"),
chunks: ["vendor", "engine", "avatar"],
inject: "head",
meta: [
{
"http-equiv": "origin-trial",
"data-feature": "WebVR (For Chrome M62+)",
"data-expires": process.env.ORIGIN_TRIAL_EXPIRES,
content: process.env.ORIGIN_TRIAL_TOKEN
}
]
}),
new HTMLWebpackPlugin({
filename: "link.html",
template: path.join(__dirname, "src", "link.html"),
chunks: ["vendor", "engine", "link"]
}),
new HTMLWebpackPlugin({
filename: "discord.html",
template: path.join(__dirname, "src", "discord.html"),
chunks: ["vendor", "discord"]
}),
new HTMLWebpackPlugin({
filename: "whats-new.html",
template: path.join(__dirname, "src", "whats-new.html"),
chunks: ["vendor", "whats-new"],
inject: "head"
}),
new HTMLWebpackPlugin({
filename: "cloud.html",
template: path.join(__dirname, "src", "cloud.html"),
chunks: ["vendor", "cloud"],
inject: "head"
}),
new CopyWebpackPlugin([
{
from: "src/hub.service.js",
to: "hub.service.js"
}
]),
new CopyWebpackPlugin([
{
from: "src/schema.toml",
to: "schema.toml"
}
]),
// Extract required css and add a content hash.
new MiniCssExtractPlugin({
filename: "assets/stylesheets/[name]-[contenthash].css",
disable: argv.mode !== "production"
}),
// Define process.env variables in the browser context.
new webpack.DefinePlugin({
"process.env": JSON.stringify({
NODE_ENV: argv.mode,
SHORTLINK_DOMAIN: process.env.SHORTLINK_DOMAIN,
RETICULUM_SERVER: process.env.RETICULUM_SERVER,
RETICULUM_SOCKET_SERVER: process.env.RETICULUM_SOCKET_SERVER,
THUMBNAIL_SERVER: process.env.THUMBNAIL_SERVER,
CORS_PROXY_SERVER: process.env.CORS_PROXY_SERVER,
NON_CORS_PROXY_DOMAINS: process.env.NON_CORS_PROXY_DOMAINS,
BUILD_VERSION: process.env.BUILD_VERSION,
SENTRY_DSN: process.env.SENTRY_DSN,
GA_TRACKING_ID: process.env.GA_TRACKING_ID,
POSTGREST_SERVER: process.env.POSTGREST_SERVER,
USE_FEATURE_CONFIG: process.env.USE_FEATURE_CONFIG
})
})
]
});