diff --git a/next.config.js b/next.config.js index 4f9eb4d..a303f08 100644 --- a/next.config.js +++ b/next.config.js @@ -19,6 +19,14 @@ const nextConfig = { images: { domains: ['images.unsplash.com', 'assets.aceternity.com'], }, + // Add performance optimizations + swcMinify: true, + poweredByHeader: false, + compress: true, + reactStrictMode: true, + compiler: { + removeConsole: process.env.NODE_ENV === 'production', + }, } module.exports = nextConfig