Files
backerup-website/frontend/next.config.ts
T
Anders Böttcher 50566f2a22 Initial Commit
2026-05-11 23:39:16 +02:00

13 lines
210 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
experimental: {
serverActions: {
bodySizeLimit: "500mb",
},
},
};
export default nextConfig;