first commit

Made-with: Cursor
This commit is contained in:
Michilis
2026-04-01 02:46:53 +00:00
commit 76210db03d
126 changed files with 20208 additions and 0 deletions

16
frontend/next.config.js Normal file
View File

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