From 1634f2cddd60004312b489158cb53d1e153412ca Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Sun, 5 Jun 2022 13:23:44 -0500 Subject: [PATCH] fix: Use proper webpack config for dev mode (#2061) This was broken when improving the build times. The typechecker unfortunately missed it! --- site/webpack.dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/webpack.dev.ts b/site/webpack.dev.ts index c51658e8e6..1e3b80f2de 100644 --- a/site/webpack.dev.ts +++ b/site/webpack.dev.ts @@ -14,7 +14,7 @@ const commonPlugins = commonWebpackConfig.plugins || [] const commonRules = commonWebpackConfig.module?.rules || [] const config: Configuration = { - ...createCommonWebpackConfig, + ...commonWebpackConfig, // devtool controls how source maps are generated. In development, we want // more details (less optimized) for more readability and an easier time