From e9747508eaabada6567749c3dc1a5427ada630b5 Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Sat, 11 Mar 2023 17:13:54 -0500 Subject: [PATCH] add comment --- server/modules/ServerBootstrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/ServerBootstrapper.js b/server/modules/ServerBootstrapper.js index 723238b..ac83fc2 100644 --- a/server/modules/ServerBootstrapper.js +++ b/server/modules/ServerBootstrapper.js @@ -140,7 +140,7 @@ const ServerBootstrapper = { app.use('', router); app.use('/dist', (req, res, next) => { - if (req.url !== '/521-bundle.js') { + if (req.url !== '/521-bundle.js') { // this is the bundled web worker, which was introducing compatibility problems with webpack compression. res.set('Content-Encoding', 'gzip'); } next();