12 lines
295 B
TypeScript
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;
|