Files
sfkm.me-next/next.config.ts
Snowykami aab775ef8f
All checks were successful
Build and Push Container Image, Deploy to Host / build-and-push-and-deploy (push) Successful in 1m36s
feat: update Next.js config to set output to standalone
2025-08-09 18:59:09 +08:00

9 lines
157 B
TypeScript

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