web/next.config.ts

10 lines
177 B
TypeScript
Raw Normal View History

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