From 2f23f0901c5943d17ee151ae2bcf2d95536c9643 Mon Sep 17 00:00:00 2001 From: Chris Debenham Date: Thu, 26 Sep 2024 15:15:22 +1000 Subject: [PATCH] Update webpack.config.js to enable working via reverse proxy --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 30ba8438..38290728 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -49,8 +49,9 @@ module.exports = { devServer: { // host: '0.0.0.0', //contentBase: "./", + allowedHosts: 'all', static: { directory: path.resolve(__dirname, "./"), }, } -}; \ No newline at end of file +};