11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
const withBundleAnalyzer = require("@next/bundle-analyzer")({
|
|
enabled: process.env.ANALYZE === "true",
|
|
})
|
|
const {withBlitz} = require("@blitzjs/next")
|
|
|
|
module.exports = withBlitz(
|
|
withBundleAnalyzer({
|
|
reactStrictMode: true,
|
|
}),
|
|
)
|