nrx.sh/next.config.ts

8 lines
129 B
TypeScript
Raw Normal View History

2025-04-02 00:17:25 +02:00
import type { NextConfig } from "next";
2025-04-02 00:42:54 +02:00
const nextConfig: NextConfig = {
output: "standalone",
};
2025-04-02 00:17:25 +02:00
export default nextConfig;