Replace @vercel/postgres, Blob, and Upstash with lib/sql.js, MinIO object storage, and CT 102 Redis rate limits. Add Dockerfile for Dokploy deploy, homelab runbooks, Neon data-copy helper, and point CI smoke/visual at the homelab URL instead of Vercel previews. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
405 B
JavaScript
14 lines
405 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: 'api.scryfall.com' },
|
|
{ protocol: 'https', hostname: 'images.pokemontcg.io' },
|
|
{ protocol: 'https', hostname: 'lorcana-api.com' },
|
|
{ protocol: 'https', hostname: 'cdn.stillwell.cloud' },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|