Files
koc-loop/next.config.ts
2026-08-11 23:07:26 +08:00

9 lines
167 B
TypeScript

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