diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2021-10-26 16:49:09 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2021-10-26 16:49:09 +0200 |
| commit | dbb66972ebd987f60e10939bfb4493f87bbc73c3 (patch) | |
| tree | f951d36871d12089775e79a57c73855c21a2e72e /webpack.config.ts | |
| parent | 55d0e202677253ecf893bd52649871f10b52d3de (diff) | |
| download | isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.tar.gz isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.tar.zst isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.zip | |
Quick commit with sort-of working WYSiWYG and moving chit
Diffstat (limited to 'webpack.config.ts')
| -rw-r--r-- | webpack.config.ts | 15 |
1 files changed, 13 insertions, 2 deletions
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": "*", + } }, }; + |
