Files
magikarp-collection/next.config.ts
2025-08-17 13:34:08 +01:00

19 lines
358 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ protocol: 'https', hostname: 'images.pokemontcg.io' },
{ protocol: 'https', hostname: 'api.pokemontcg.io' },
],
},
output: 'standalone',
experimental: {
turbo: {
rules: {},
},
},
};
export default nextConfig;