judge4c/next.config.ts

11 lines
282 B
TypeScript
Raw Normal View History

2025-02-19 01:00:15 +00:00
import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
2025-02-19 01:00:15 +00:00
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["dockerode"],
2025-02-19 01:00:15 +00:00
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);