From 1957a6baa00123260c2e21a045a01071b80a063a Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Wed, 26 Feb 2025 21:18:33 +0800 Subject: [PATCH] feat(next.config): add dockerode to serverExternalPackages --- next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index bff4933..f5ab8b0 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,8 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - output: "standalone" + output: "standalone", + serverExternalPackages: ["dockerode"], }; export default nextConfig;