mirror of
https://github.com/rmoren97/mc-manager.git
synced 2026-02-10 17:40:30 -08:00
22 lines
440 B
TypeScript
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;
|