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