2026-08-17 13:49:55 +02:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-08-17 14:39:44 +02:00
|
|
|
// dockerode and systeminformation do dynamic/OS-conditional requires
|
|
|
|
|
// (optional native bindings, platform-specific code paths) that don't
|
|
|
|
|
// survive Next's bundler well - keep them as plain runtime requires.
|
|
|
|
|
serverExternalPackages: ["dockerode", "systeminformation"],
|
2026-08-17 13:49:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|