Files
CICD/next.config.ts
SpecialX 4bd5c687bc
Some checks failed
CI / build-and-test (push) Successful in 1m18s
CI / deploy (push) Failing after 3s
feat: setup standalone build and docker deployment
2025-12-18 17:16:39 +08:00

8 lines
129 B
TypeScript

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