1
0
mirror of synced 2025-12-26 05:00:15 -05:00
Files
blitz/apps/web/next.config.js
2022-07-04 17:35:36 +02:00

16 lines
317 B
JavaScript

const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
})
const {withBlitz} = require("@blitzjs/next")
module.exports = withBlitz(
withBundleAnalyzer({
reactStrictMode: true,
blitz: {
customServer: {
hotReload: false,
},
},
}),
)