Files
pinkudex/next.config.ts
2026-05-26 22:46:00 +02:00

12 lines
295 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
serverExternalPackages: ["better-sqlite3", "sharp"],
allowedDevOrigins: ["100.67.247.84", "localhost", "127.0.0.1"],
experimental: {
serverActions: { bodySizeLimit: "50mb" },
},
};
export default nextConfig;