cooking/next.config.ts
2026-02-13 12:14:16 -08:00

9 lines
154 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
};
export default nextConfig;