14 lines
		
	
	
		
			396 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			396 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('next').NextConfig} */
 | 
						|
const nextConfig = {
 | 
						|
  output: 'export',
 | 
						|
  trailingSlash: true,
 | 
						|
  images: {
 | 
						|
    unoptimized: true,
 | 
						|
  },
 | 
						|
  // Note: API routes in src/app/api/ will not work with static export
 | 
						|
  // The contact form API route will need to be handled separately
 | 
						|
  // Consider using a serverless function or external service for form handling
 | 
						|
};
 | 
						|
 | 
						|
module.exports = nextConfig;
 |