2026-06-15 08:54:27 +02:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-06-15 09:28:22 +02:00
|
|
|
output: "standalone",
|
2026-06-15 11:32:14 +02:00
|
|
|
basePath: "/mobile",
|
|
|
|
|
assetPrefix: "/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-15 08:54:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|