2026-06-04 06:09:11 +03:30
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
2026-06-04 14:31:14 +03:30
|
|
|
// 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 = {
|
2026-06-04 14:31:14 +03:30
|
|
|
output: "export",
|
|
|
|
|
images: { unoptimized: true },
|
2026-06-04 06:09:11 +03:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|