mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 14:56:36 +00:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import type { NextConfig } from "next";
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["dockerode"],
|
|
};
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
export default withNextIntl(nextConfig);
|