You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
351 B
13 lines
351 B
3 years ago
|
/* cspell: disable */
|
||
|
export const DOCS = 'https://docs.adminjs.co'
|
||
|
export const DEFAULT_PATHS = {
|
||
|
rootPath: '/admin',
|
||
|
logoutPath: '/admin/logout',
|
||
|
loginPath: '/admin/login',
|
||
|
}
|
||
|
|
||
|
const DEFAULT_TMP_DIR = '.adminjs'
|
||
|
export const ADMIN_JS_TMP_DIR = typeof process === 'object'
|
||
|
? process.env.ADMIN_JS_TMP_DIR || DEFAULT_TMP_DIR
|
||
|
: DEFAULT_TMP_DIR
|