/** @type {import('next').NextConfig} */ const nextConfig = { serverExternalPackages: ['sharp'], images: { remotePatterns: [ { protocol: 'https', hostname: '**' }, ], }, async rewrites() { return [ { source: '/calendar.ics', destination: '/calendar' }, ]; }, }; module.exports = nextConfig;