12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
import { Environment } from '@delon/theme';
|
|
|
|
export const environment = {
|
|
production: true,
|
|
useHash: true,
|
|
api: {
|
|
baseUrl: './',
|
|
refreshTokenEnabled: true,
|
|
refreshTokenType: 'auth-refresh'
|
|
}
|
|
} as Environment;
|