mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-29 22:31:18 +01:00
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
|
|
const STORAGE_KEY = "aelis-server-url"
|
||
|
|
const DEFAULT_URL = "https://3000--019cf276-6ed6-7529-a425-210182693908.eu-runner.flex.doptig.cloud"
|
||
|
|
|
||
|
|
export function getServerUrl(): string {
|
||
|
|
return localStorage.getItem(STORAGE_KEY) ?? DEFAULT_URL
|
||
|
|
}
|
||
|
|
|
||
|
|
export function setServerUrl(url: string): void {
|
||
|
|
localStorage.setItem(STORAGE_KEY, url.replace(/\/+$/, ""))
|
||
|
|
}
|