19 lines
353 B
TypeScript
19 lines
353 B
TypeScript
import { 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;
|