20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
/*
|
|
* @Description:
|
|
* @Author: wsm
|
|
* @Date: 2021-06-18 16:12:05
|
|
* @LastEditTime: 2021-07-14 10:17:39
|
|
* @LastEditors: Do not edit
|
|
* @Reference:
|
|
*/
|
|
import { Environment } from '@delon/theme';
|
|
|
|
export const environment = {
|
|
production: true,
|
|
useHash: true,
|
|
api: {
|
|
baseUrl: 'https://scm-api-test.eascs.com',
|
|
refreshTokenEnabled: false,
|
|
refreshTokenType: 'auth-refresh',
|
|
},
|
|
} as Environment;
|