| 1234567891011121314 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- // output: "export",
- env: {
- CLIENTS: process.env.CLIENTS
- ? JSON.parse(process.env.CLIENTS)
- : ["10.10.10.100", "10.10.10.101", "10.10.10.102", "10.10.10.103"],
- NAMES: process.env.NAMES
- ? JSON.parse(process.env.NAMES)
- : ["Stage", "Yellow Tower", "Blue Tower", "Red Tower"]
- }
- };
- module.exports = nextConfig;
|