/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, images: { domains: ['localhost'], formats: ['image/avif', 'image/webp'], }, experimental: { serverActions: { allowedOrigins: ['localhost:3000', 'olathedeafclub.com'], }, }, headers: async () => { return [ { source: '/(.*)', headers: [ { key: 'X-Content-Type-Options', value: 'nosniff', }, { key: 'X-Frame-Options', value: 'SAMEORIGIN', }, { key: 'X-XSS-Protection', value: '1; mode=block', }, ], }, ]; }, }; export default nextConfig;