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; });