Files
learn-languages/next.config.ts
2025-10-30 13:48:05 +08:00

10 lines
212 B
TypeScript

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