Files
falah-mobile/next.config.ts
T

14 lines
248 B
TypeScript
Raw Normal View History

2026-06-15 08:54:27 +02:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
typescript: {
ignoreBuildErrors: true,
},
experimental: {
optimizePackageImports: ["lucide-react"],
},
2026-06-15 08:54:27 +02:00
};
export default nextConfig;