From 9d9e6e00503ffcb9bc21c49bbf3585ce5f09a713 Mon Sep 17 00:00:00 2001 From: Akos Gabriel Date: Wed, 9 Feb 2022 15:09:28 +0100 Subject: [PATCH] fix docker build --- webpack.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.ts b/webpack.config.ts index cc13bd2..1a7b579 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -1,5 +1,6 @@ import path from 'path'; import webpack from 'webpack'; +import webpackDevServer from 'webpack-dev-server'; import HtmlWebpackPlugin from 'html-webpack-plugin'; const config: webpack.Configuration = { @@ -72,4 +73,4 @@ const config: webpack.Configuration = { }; -export default config; \ No newline at end of file +export default config;