7 lines
194 B
JavaScript
7 lines
194 B
JavaScript
|
const { composePlugins, withNx } = require('@nx/webpack');
|
||
|
|
||
|
module.exports = composePlugins(withNx(), (config, { options, context }) => {
|
||
|
// Customize webpack config here
|
||
|
return config;
|
||
|
});
|