-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Closed
Labels
Description
What problem does this feature solve?
- 解决环境配置文件内容的不可编程问题;
- 提高环境配置文件内容的扩展性;
What does the proposed API look like?
now
filename
.env
content
TOP_DOMAIN=a.com
AI_DOMAIN=ai.a.com
FM_DOMAIN=fm.a.com
new
filename
.env.js
content
const TOP_DOMAIN = 'a.com';
module.exports = {
TOP_DOMAIN,
AI_DOMAIN: `ai.${TOP_DOMAIN}`,
FM_DOMAIN: `fm.${TOP_DOMAIN}`
}
jkzing