2022-03-23 15:34:23 -07:00
|
|
|
import bundleAnalyzer from "@next/bundle-analyzer"
|
2022-03-07 23:09:30 -08:00
|
|
|
|
2022-03-06 16:46:59 -08:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
2022-04-10 20:05:42 -07:00
|
|
|
reactStrictMode: true,
|
|
|
|
experimental: {
|
2022-11-08 00:23:28 -08:00
|
|
|
// outputStandalone: true,
|
2022-11-08 22:14:43 -08:00
|
|
|
// esmExternals: true,
|
|
|
|
appDir: true
|
2022-04-10 20:05:42 -07:00
|
|
|
},
|
2022-12-04 01:31:51 -08:00
|
|
|
|
2022-03-23 15:34:23 -07:00
|
|
|
}
|
2022-03-06 16:46:59 -08:00
|
|
|
|
2022-03-21 20:30:45 -07:00
|
|
|
export default bundleAnalyzer({ enabled: process.env.ANALYZE === "true" })(
|
2022-04-10 20:05:42 -07:00
|
|
|
nextConfig
|
2022-03-23 15:34:23 -07:00
|
|
|
)
|