17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
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;
|