Files
general-support-template/next.config.ts
2026-01-16 12:50:58 -05:00

8 lines
129 B
TypeScript

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