Files
pangolin/next.config.ts
2026-05-28 13:59:14 -07:00

14 lines
337 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
reactStrictMode: false,
reactCompiler: true,
transpilePackages: ["@novnc/novnc"],
output: "standalone"
};
export default withNextIntl(nextConfig);