Init commit from initial prompt

This commit is contained in:
2025-08-17 12:21:15 +01:00
commit caee8e27f2
21 changed files with 3114 additions and 0 deletions

17
next.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ protocol: 'https', hostname: 'images.pokemontcg.io' },
{ protocol: 'https', hostname: 'api.pokemontcg.io' },
],
},
experimental: {
turbo: {
rules: {},
},
},
};
export default nextConfig;