import type { NextConfig } from "next"; | |
const nextConfig: NextConfig = { | |
/* config options here */ | |
output: 'standalone', | |
env: { | |
NEXT_PUBLIC_NGINX_URL: process.env.NEXT_PUBLIC_NGINX_URL || "http://localhost:65/", | |
PUBLIC_URL: process.env.NEXT_PUBLIC_API_URL || "http://127.0.0.1:4523/m1/6387307-6083949-default", | |
}, | |
}; | |
export default nextConfig; |