Files
falah-mobile/next.config.ts
T
wmj 6f31d6043c mobile2: Casdoor OIDC auth deployment
- New branch for mobile2.falah-os.com with Casdoor OIDC
- Auth page with 'Sign in with Casdoor' button
- OIDC callback: exchanges code via server-side API route
- env vars configured on Netlify
- DNS auto-configured via Netlify (falah-os.com zone)
2026-06-29 00:09:32 +02:00

18 lines
350 B
TypeScript

import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
basePath: "/mobile",
typescript: {
ignoreBuildErrors: true,
},
experimental: {
optimizePackageImports: ["lucide-react"],
},
turbopack: {
root: path.resolve(import.meta.dirname || __dirname),
},
};
export default nextConfig;