Files
demo-ayristech/next.config.ts
T
2026-06-06 00:43:39 +03:00

11 lines
200 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone", // Dockerfile için gerekli
images: {
remotePatterns: [],
},
};
export default nextConfig;