You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
259 B
9 lines
259 B
1 year ago
|
const { composePlugins, withNx } = 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())`
|
||
|
return config;
|
||
|
});
|