feat(next.config): add dockerode to serverExternalPackages

This commit is contained in:
cfngc4594 2025-02-26 21:18:33 +08:00
parent ae9be5d325
commit 1957a6baa0

View File

@ -1,7 +1,8 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone" output: "standalone",
serverExternalPackages: ["dockerode"],
}; };
export default nextConfig; export default nextConfig;