next15-docker/next.config.ts

9 lines
155 B
TypeScript
Raw Normal View History

2025-01-11 00:51:01 +05:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-01-11 01:03:44 +05:00
/* config options here */
output: "standalone",
2025-01-11 00:51:01 +05:00
};
export default nextConfig;