mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 23:12:23 +00:00
9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["dockerode"],
|
|
};
|
|
|
|
export default nextConfig;
|