www_ourworld_new/next.config.js
2025-08-06 13:00:32 +02:00

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;