39246-vm/frontend/next.config.ts
abbashkyt-creator 7d8ce0e322 V0.1
2026-03-14 04:02:22 +03:00

11 lines
219 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
output: 'export', // Static export — FastAPI serves this in production
images: {
unoptimized: true,
},
}
export default nextConfig