Files
react/examples/tree-shaking-nextjs/next.config.js

7 lines
226 B
JavaScript

const withTM = require('next-transpile-modules')(['@zeit-ui/react'])
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
module.exports = withTM(withBundleAnalyzer({}))