Files
app_umbrix/lib/constants.ts

9 lines
415 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Константы для всего приложения - ОДНО МЕСТО для изменения URL
export const MARZBAN_PANEL_URL = process.env.MARZBAN_API_URL || 'https://panel.umbrix.net';
export const MARZBAN_SUBSCRIPTION_URL = 'https://umbrix2.3to3.sbs';
// Генерация subscription URL
export const getSubscriptionUrl = (token: string) =>
`${MARZBAN_SUBSCRIPTION_URL}/sub/${token}/`;