Files
learn-languages/next.config.ts
goddonebianu 986be675b2
All checks were successful
continuous-integration/drone/push Build is passing
add .drone.yml
2025-10-16 17:24:47 +08:00

10 lines
195 B
TypeScript

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