6f31d6043c
- 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)
18 lines
350 B
TypeScript
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;
|