Files
BA_TTS_Annotation_Plattform/next.config.ts
2026-03-13 08:56:54 +01:00

13 lines
208 B
TypeScript

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