17 lines
330 B
JavaScript
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;
|