forked from Hubs-Foundation/hubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
307 lines (298 loc) · 9.03 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
// 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 ExtractTextPlugin = require("extract-text-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
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;
};
}
module.exports = (env, argv) => ({
entry: {
index: path.join(__dirname, "src", "index.js"),
hub: path.join(__dirname, "src", "hub.js"),
scene: path.join(__dirname, "src", "scene.js"),
link: path.join(__dirname, "src", "link.js"),
spoke: path.join(__dirname, "src", "spoke.js"),
"whats-new": path.join(__dirname, "src", "whats-new.js"),
"avatar-selector": path.join(__dirname, "src", "avatar-selector.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: process.env.HOST_IP || "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
}
},
{
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)$/,
loader: ExtractTextPlugin.extract({
fallback: "style-loader",
use: [
{
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: /\.(glsl)$/,
use: { loader: "raw-loader" }
}
]
},
optimization: {
// necessary due to https://github.com/visionmedia/debug/issues/547
minimizer: [new UglifyJsPlugin({ sourceMap: true, uglifyOptions: { compress: { collapse_vars: false } } })],
splitChunks: {
cacheGroups: {
engine: {
test: /([\\/]src[\\/]workers|[\\/]node_modules[\\/](aframe|cannon|three\.js))/,
priority: 100,
name: "engine",
chunks: "all"
},
vendors: {
test: matchRegex({
include: /([\\/]node_modules[\\/]|[\\/]vendor[\\/])/,
exclude: /[\\/]node_modules[\\/]markdown-it[\\/]/
}),
priority: 50,
name: "vendor",
chunks: "all"
}
}
}
},
plugins: [
// 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: "link.html",
template: path.join(__dirname, "src", "link.html"),
chunks: ["vendor", "link"]
}),
new HTMLWebpackPlugin({
filename: "spoke.html",
template: path.join(__dirname, "src", "spoke.html"),
chunks: ["vendor", "spoke"]
}),
new HTMLWebpackPlugin({
filename: "whats-new.html",
template: path.join(__dirname, "src", "whats-new.html"),
chunks: ["vendor", "whats-new"],
inject: "head"
}),
new HTMLWebpackPlugin({
filename: "avatar-selector.html",
template: path.join(__dirname, "src", "avatar-selector.html"),
chunks: ["vendor", "engine", "avatar-selector"],
inject: "head"
}),
new CopyWebpackPlugin([
{
from: "src/assets/images/favicon.ico",
to: "favicon.ico"
}
]),
new CopyWebpackPlugin([
{
from: "src/assets/images/hub-preview.png",
to: "hub-preview.png"
}
]),
new CopyWebpackPlugin([
{
from: "src/hub.service.js",
to: "hub.service.js"
}
]),
// Extract required css and add a content hash.
new ExtractTextPlugin({
filename: "assets/stylesheets/[name]-[md5:contenthash:hex:20].css",
disable: argv.mode !== "production"
}),
// Define process.env variables in the browser context.
new webpack.DefinePlugin({
"process.env": JSON.stringify({
NODE_ENV: argv.mode,
RETICULUM_SERVER: process.env.RETICULUM_SERVER,
FARSPARK_SERVER: process.env.FARSPARK_SERVER,
CORS_PROXY_SERVER: process.env.CORS_PROXY_SERVER,
NON_CORS_PROXY_DOMAINS: process.env.NON_CORS_PROXY_DOMAINS,
ASSET_BUNDLE_SERVER: process.env.ASSET_BUNDLE_SERVER,
EXTRA_ENVIRONMENTS: process.env.EXTRA_ENVIRONMENTS,
BUILD_VERSION: process.env.BUILD_VERSION
})
})
]
});