bixi
Version:
企业级中后台前端解决方案
21 lines (18 loc) • 657 B
text/typescript
import { BixiConfigService } from './auth.config.service';
import { BixiAuthConfig } from './config.type';
export const AUTH_DEFAULT_CONFIG: BixiAuthConfig = {
store_key: `_token`,
token_invalid_redirect: true,
token_exp_offset: 10,
token_send_key: `token`,
// tslint:disable-next-line: no-invalid-template-strings
token_send_template: '${token}',
token_send_place: 'header',
login_url: '/login',
ignores: [/\/login/, /assets\//, /passport\//],
allow_anonymous_key: `_allow_anonymous`,
executeOtherInterceptors: true
};
export function mergeConfig(srv: BixiConfigService): BixiAuthConfig {
return srv.merge(AUTH_DEFAULT_CONFIG);
}