gendesign/frontend/next.config.ts
2026-04-25 13:45:19 +03:00

8 lines
154 B
TypeScript

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