Files
koc-loop/next.config.ts

9 lines
167 B
TypeScript
Raw Normal View History

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