import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Allow server-side Node.js modules used by dockerode, child_process, etc. serverExternalPackages: ['dockerode', 'node-cron'], images: { remotePatterns: [ { protocol: 'https', hostname: 'mc-heads.net', }, { protocol: 'https', hostname: 'crafatar.com', }, ], }, }; export default nextConfig;