mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 07:52:59 +08:00
10 lines
394 B
TypeScript
10 lines
394 B
TypeScript
|
// Active User Credentials
|
||
|
export const STORAGE_AUTH_KEY = '__fel_lis__';
|
||
|
export const ENCRYPT_AUTH_KEY = 'felicity';
|
||
|
// development purposes only
|
||
|
export const USER_GROUP_OVERRIDE = ''; // 'ADMINISTRATOR'
|
||
|
|
||
|
export const GQL_BASE_URL = import.meta.env.VITE_BASE_GRAPHQL_URL;
|
||
|
export const WS_BASE_URL = import.meta.env.VITE_BASE_WS_URL;
|
||
|
export const REST_BASE_URL = import.meta.env.VITE_BASE_URL;
|