next.config.js 406 B

1234567891011121314
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. // output: "export",
  4. env: {
  5. CLIENTS: process.env.CLIENTS
  6. ? JSON.parse(process.env.CLIENTS)
  7. : ["10.10.10.100", "10.10.10.101", "10.10.10.102", "10.10.10.103"],
  8. NAMES: process.env.NAMES
  9. ? JSON.parse(process.env.NAMES)
  10. : ["Stage", "Yellow Tower", "Blue Tower", "Red Tower"]
  11. }
  12. };
  13. module.exports = nextConfig;