From 4ac3adc8f1548c0a20d59c82969f2f18612b0324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20=C5=BDia=C4=8Dik?= Date: Mon, 25 Dec 2023 22:11:06 +0100 Subject: [PATCH] chore: fix test-app webpack config --- packages/test-app/webpack.config.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/test-app/webpack.config.js b/packages/test-app/webpack.config.js index baa5ff6..1f3c1c6 100644 --- a/packages/test-app/webpack.config.js +++ b/packages/test-app/webpack.config.js @@ -1,8 +1,6 @@ -const { composePlugins, withNx } = require('@nx/webpack'); +const { composePlugins, withNx, withWeb } = require('@nx/webpack'); // Nx plugins for webpack. -module.exports = composePlugins(withNx(), (config) => { - // Update the webpack config as needed here. - // e.g. `config.plugins.push(new MyPlugin())` +module.exports = composePlugins(withNx(), withWeb(), (config) => { return config; });