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