Files
learn-languages/next.config.ts
2025-10-31 12:28:28 +08:00

11 lines
323 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
allowedDevOrigins: ["192.168.3.65", "192.168.3.66"],
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);