mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-21 17:41:59 +00:00
10 lines
281 B
TypeScript
10 lines
281 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); |