CoffeeChat/webapp/next.config.ts
2026-04-03 12:35:13 +02:00

15 lines
261 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
experimental: {
serverActions: {
bodySizeLimit: "10mb",
},
viewTransition: true
},
output: 'standalone'
};
export default nextConfig;