Files
BA_TTS_Annotation_Plattform/next.config.ts

14 lines
239 B
TypeScript

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