mc-manager/next.config.ts
2026-02-07 12:20:12 -08:00

22 lines
440 B
TypeScript

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;