1
0
mirror of synced 2025-12-26 14:00:11 -05:00
Files
blitz/apps/web/next.config.js
2022-06-08 14:50:00 -07:00

17 lines
349 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,
},
resolverBasePath: "root",
},
}),
)