blob: 4737600c5f9d67a541c2002f88b9c584939c0c9b [file] [log] [blame]
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;