docker-compiler-nextjs/next.config.ts

8 lines
148 B
TypeScript
Raw Normal View History

2024-12-29 08:11:54 +00:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-02-27 01:53:04 +00:00
serverExternalPackages: ["dockerode"],
2024-12-29 08:11:54 +00:00
};
export default nextConfig;