add comment

This commit is contained in:
AlecM33
2023-03-11 17:13:54 -05:00
parent 5381b5046d
commit e9747508ea

View File

@@ -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();