From 50c299a8c448b471f40702ced59f211b8aa93199 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Mon, 1 Nov 2021 15:29:00 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Hostname=20fix=20for=20the=204th?= =?UTF-8?q?=20time?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 1 + webpack.config.js | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5d06771..71d5f96 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,6 +7,7 @@ services: image: frishi/threetwo container_name: threetwo-ui env_file: ./docker-compose.env + UNDERLYING_HOSTNAME: rook restart: unless-stopped ports: - "8050:8050" diff --git a/webpack.config.js b/webpack.config.js index 6cee908..3b4dd8d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -98,7 +98,9 @@ module.exports = (env) => { title: "express-typescript-react", }), new webpack.DefinePlugin({ - "process.env.UNDERLYING_HOSTNAME": JSON.stringify(process.env.UNDERLYING_HOSTNAME), + "process.env.UNDERLYING_HOSTNAME": JSON.stringify( + process.env.UNDERLYING_HOSTNAME, + ), }), new MiniCssExtractPlugin({ filename: "./css/[name].css",