19 lines
362 B
JavaScript
19 lines
362 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
output: "standalone",
|
|
compress: true,
|
|
poweredByHeader: false,
|
|
images: {
|
|
formats: ["image/avif", "image/webp"],
|
|
minimumCacheTTL: 60,
|
|
},
|
|
experimental: {
|
|
optimizePackageImports: ["lucide-react"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|
|
|