Files
web-tools/next.config.ts
Snowykami 134e2f28b0
Some checks failed
Build and Push Container Image, Deploy to Host / build-and-push-and-deploy (push) Failing after 1m21s
feat: update next.config.ts to set output to standalone
2025-08-14 00:24:52 +08:00

9 lines
156 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone"
/* config options here */
};
export default nextConfig;