File size: 391 Bytes
21a686e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  images: {
    unoptimized: true,
    domains: ['slelguoygbfzlpylpxfs.supabase.co'],
  },
  // Optimize for production
  compress: true,
  generateEtags: false,
  // Custom domain configuration
  assetPrefix: process.env.NODE_ENV === 'production' ? '' : '',
};

export default nextConfig;