Files

11 lines
317 B
TypeScript
Raw Permalink Normal View History

2026-06-04 06:09:11 +03:30
import type { NextConfig } from "next";
// Static export so the app can be wrapped by Capacitor (Android/Cafe Bazaar)
// and hosted on any static host. The app is fully client-side (no SSR/runtime).
2026-06-04 06:09:11 +03:30
const nextConfig: NextConfig = {
output: "export",
images: { unoptimized: true },
2026-06-04 06:09:11 +03:30
};
export default nextConfig;