Skip to content

Commit

Permalink
chore: fix test-app webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
ziacik committed Dec 25, 2023
1 parent 659c914 commit 4ac3adc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/test-app/webpack.config.js
Original file line number Diff line number Diff line change
@@ -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;
});

0 comments on commit 4ac3adc

Please sign in to comment.