suna/frontend/next.config.ts

8 lines
179 B
TypeScript
Raw Normal View History

import type { NextConfig } from 'next';
2025-04-16 01:20:15 +08:00
const nextConfig = (): NextConfig => ({
output: (process.env.NEXT_OUTPUT as 'standalone') || undefined,
});
2025-04-16 01:20:15 +08:00
export default nextConfig;