mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-15 09:07:37 +08:00
7 lines
226 B
JavaScript
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({}))
|