Files
koc-loop/next.config.ts
2026-08-15 03:53:09 +08:00

9 lines
176 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["mysql2", "sharp"],
};
export default nextConfig;