6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
const { composePlugins, withNx } = require('@nx/webpack');
|
|
|
|
module.exports = composePlugins(withNx(), (config) => {
|
|
return config;
|
|
});
|