2025-01-23 23:41:12 -05:00
|
|
|
import type { NextConfig } from "next"
|
2025-01-23 18:30:01 -05:00
|
|
|
|
2025-01-23 23:41:12 -05:00
|
|
|
/** @type {NextConfig} */
|
2025-01-23 18:30:01 -05:00
|
|
|
const nextConfig: NextConfig = {
|
2025-01-23 23:41:12 -05:00
|
|
|
reactStrictMode: true,
|
|
|
|
output: "standalone",
|
|
|
|
}
|
2025-01-23 18:30:01 -05:00
|
|
|
|
2025-01-23 23:41:12 -05:00
|
|
|
export default nextConfig
|