10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone", // Erforderlich für Docker-Deployment
|
|
reactCompiler: true,
|
|
};
|
|
|
|
export default nextConfig;
|