[](https://www.npmjs.com/package/next-composed-plugins)
npm install next-composed-plugins
``bashInstall with Yarn
yarn add -D next-composed-plugins
🚀 Usage
`ts
const { withPlugins } = require('next-composed-plugins');module.exports = withPlugins(
{
reactStrictMode: true,
compiler: {
styledComponents: true,
},
},
[
withSvgr,
withBundleAnalyzer,
[
withInterceptStdout,
(text) => (text.includes('Duplicate atom key') ? '' : text),
],
// Add plugins here
],
);
`> Interested in
withInterceptStdout`? Click Here