| 12345678910111213141516171819202122 |
- /**
- * 开发环境配置
- */
- export default {
- // 环境标识
- env: 'development',
-
- // API 配置
- baseUrl: 'https://dev-api.example.com',
- timeout: 10000,
-
- // 应用信息
- appName: '布尔销销乐测试',
- appVersion: '1.0.0',
-
- // 微信小程序配置
- appId: 'wx6124d881774fb80a',
-
- // 调试配置
- debug: true,
- enableLog: true
- }
|