Summary
Several environment-specific values are hardcoded in source files instead of coming from the .env config:
DAPP_URL_BASE in Buildings.tsx is hardcoded to https://brainy-bots.github.io/efguard/
- Should be a
VITE_DAPP_BASE_URL env var
Ideally each environment (stillness, utopia, local) should have its own .env file (.env.stillness, .env.utopia, .env.local) and switching is just a matter of selecting which one to use.
Current workaround
Manually editing .env and source files when switching environments.
🤖 Generated with Claude Code
Summary
Several environment-specific values are hardcoded in source files instead of coming from the .env config:
DAPP_URL_BASEin Buildings.tsx is hardcoded tohttps://brainy-bots.github.io/efguard/VITE_DAPP_BASE_URLenv varIdeally each environment (stillness, utopia, local) should have its own .env file (
.env.stillness,.env.utopia,.env.local) and switching is just a matter of selecting which one to use.Current workaround
Manually editing
.envand source files when switching environments.🤖 Generated with Claude Code