Files
BelgianBitcoinEmbassy/frontend/next.config.js
Michilis 76210db03d first commit
Made-with: Cursor
2026-04-01 02:46:53 +00:00

17 lines
330 B
JavaScript

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