2026-06-15 08:54:27 +02:00
|
|
|
import type { NextConfig } from "next";
|
2026-06-29 00:09:32 +02:00
|
|
|
import path from "path";
|
2026-06-15 08:54:27 +02:00
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-06-15 11:32:14 +02:00
|
|
|
basePath: "/mobile",
|
2026-06-15 10:32:10 +02:00
|
|
|
typescript: {
|
|
|
|
|
ignoreBuildErrors: true,
|
|
|
|
|
},
|
2026-06-15 09:28:22 +02:00
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["lucide-react"],
|
|
|
|
|
},
|
2026-06-29 00:09:32 +02:00
|
|
|
turbopack: {
|
|
|
|
|
root: path.resolve(import.meta.dirname || __dirname),
|
|
|
|
|
},
|
2026-06-15 08:54:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|