Files
fire-exam/next.config.ts
2025-05-28 09:46:28 +03:00

9 lines
157 B
TypeScript

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