From d5f967ce709e4e77c15737ddbc051cc7f4f8c5c8 Mon Sep 17 00:00:00 2001 From: Amit Jakubowicz Date: Mon, 25 Nov 2019 20:19:04 +0100 Subject: [PATCH] Fix webpack import type --- packages/qpa-ssr/webpack.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/qpa-ssr/webpack.config.ts b/packages/qpa-ssr/webpack.config.ts index bb0d4bc..73609a5 100644 --- a/packages/qpa-ssr/webpack.config.ts +++ b/packages/qpa-ssr/webpack.config.ts @@ -1,7 +1,7 @@ import * as path from "path" -import config, { Configuration } from "qpa-webpack/webpack.config" +import config, { WebpackConfig } from "qpa-webpack/webpack.config" -const ssrConfig: Configuration = { +const ssrConfig: WebpackConfig = { ...config, entry: "./index.ts", target: "node",