import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", poweredByHeader: false, compress: true, images: { formats: ["image/avif", "image/webp"], deviceSizes: [360, 640, 768, 1024, 1280, 1536], }, experimental: { optimizePackageImports: ["lucide-react", "motion"], }, }; export default nextConfig;