From 5030ceda5f3fac87843b6c9a0b3e40a9e7f3d6c6 Mon Sep 17 00:00:00 2001 From: rav4s Date: Fri, 2 Apr 2021 10:11:59 -0500 Subject: [PATCH] Fix "inavlid host header" --- www/webpack.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/webpack.config.js b/www/webpack.config.js index 5e8baae..fe6f36f 100644 --- a/www/webpack.config.js +++ b/www/webpack.config.js @@ -12,4 +12,8 @@ module.exports = { plugins: [ new CopyWebpackPlugin(['index.html']) ], + devServer: { + compress: true, + public: 'dna-transcription-translation.yeetpc.com' //Change for another domain + } };