8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["dockerode"],
|
|
};
|
|
|
|
export default nextConfig;
|