()
| 10 | const appKey = region ? appKeys[region] : isDevelopment ? devAppKey : undefined; |
| 11 | |
| 12 | export function initAnalytics() { |
| 13 | if (!appKey) return; |
| 14 | |
| 15 | init(appKey, { |
| 16 | appVersion: import.meta.env.APP_VERSION, |
| 17 | isDebug: isDevelopment, |
| 18 | }); |
| 19 | } |