Files
koc-loop/next.config.ts

9 lines
176 B
TypeScript
Raw Permalink Normal View History

2026-07-30 12:06:41 +08:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["mysql2", "sharp"],
2026-07-30 12:06:41 +08:00
};
export default nextConfig;