Files
rate-my-shots/next.config.ts
2026-04-04 01:18:06 +01:00

12 lines
192 B
TypeScript

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