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",
|
|
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["lucide-react"],
|
|
|
|
|
},
|
2026-06-15 08:54:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|