From d79a80b8ec24ca218b9c7a64053ead76075a3518 Mon Sep 17 00:00:00 2001 From: Athlon1600 Date: Wed, 10 May 2023 22:14:47 -0500 Subject: [PATCH] Update webpack.config.js --- frontend/webpack.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index 8d54933..52165bb 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -73,7 +73,9 @@ if (isProd) { routes: ['/'] }); - webpackConfig.plugins.push(prerender); + // requires extra dependencies + // error while loading shared libraries: libX11-xcb.so.1: cannot open shared object file: No such file or directory + // webpackConfig.plugins.push(prerender); } module.exports = webpackConfig;