From dbb66972ebd987f60e10939bfb4493f87bbc73c3 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Tue, 26 Oct 2021 16:49:09 +0200 Subject: Quick commit with sort-of working WYSiWYG and moving chit --- webpack.config.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'webpack.config.ts') diff --git a/webpack.config.ts b/webpack.config.ts index e22cd6f..2c3e58e 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -66,8 +66,19 @@ module.exports = { global: true, }, devServer: { - contentBase: absolutePath("static"), + // contentBase: absolutePath("static"), compress: true, - port: 8003, + port: 8000, + liveReload: true, + hot: false, + allowedHosts: "all", + client: { + overlay: true, + }, + host: "0.0.0.0", + headers: { + "Access-Control-Allow-Origin": "*", + } }, }; + -- cgit v1.3.1