first commit

This commit is contained in:
2025-05-13 12:12:47 +02:00
commit c37cf55f67
75 changed files with 13258 additions and 0 deletions

14
next.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ hostname: 'res.cloudinary.com', protocol: 'https' },
{ hostname: 'avatars.githubusercontent.com', protocol: 'https' },
{ hostname: 'imgur.com', protocol: 'https' },
{ hostname: 'media2.dev.to', protocol: 'https' },
],
},
};
export default nextConfig;