LaoeGaoci | a82dfe9 | 2025-04-01 20:17:11 +0800 | [diff] [blame] | 1 | import type { NextConfig } from "next"; |
| 2 | |
| 3 | const nextConfig: NextConfig = { |
| 4 | /* config options here */ |
LaoeGaoci | 6b25610 | 2025-06-03 13:51:11 +0800 | [diff] [blame^] | 5 | output: 'standalone', |
LaoeGaoci | ee7c577 | 2025-05-28 12:34:47 +0800 | [diff] [blame] | 6 | env: { |
LaoeGaoci | 6b25610 | 2025-06-03 13:51:11 +0800 | [diff] [blame^] | 7 | NEXT_PUBLIC_NGINX_URL: process.env.NEXT_PUBLIC_NGINX_URL || "http://localhost:65/", |
| 8 | PUBLIC_URL: process.env.NEXT_PUBLIC_API_URL || "http://127.0.0.1:4523/m1/6387307-6083949-default", |
LaoeGaoci | ee7c577 | 2025-05-28 12:34:47 +0800 | [diff] [blame] | 9 | }, |
LaoeGaoci | a82dfe9 | 2025-04-01 20:17:11 +0800 | [diff] [blame] | 10 | }; |
| 11 | |
| 12 | export default nextConfig; |