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). const nextConfig: NextConfig = { output: "export", images: { unoptimized: true }, }; export default nextConfig;