From b8b4474a9934b588135c83f4e1cd48a3bf1768c0 Mon Sep 17 00:00:00 2001 From: Maximilian Ammann Date: Thu, 9 Dec 2021 18:12:08 +0100 Subject: [PATCH] Enable HTTPS and run on all interfaces --- web/webpack.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/webpack.config.js b/web/webpack.config.js index ec737f97..09f32d8c 100644 --- a/web/webpack.config.js +++ b/web/webpack.config.js @@ -20,6 +20,9 @@ module.exports = { filename: "[name].js" }, devServer: { + https: true, + allowedHosts: 'all', + host: '0.0.0.0', static: { directory: dist, },