1
0
mirror of synced 2025-12-26 14:00:11 -05:00
Files
blitz/apps/web/next.config.js
2022-04-12 15:56:15 -04:00

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,
}),
)