11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
import { publicRuntimeConfig } from '@/config/runtime';
|
|
|
|
const { APP_BASE_PATH } = publicRuntimeConfig;
|
|
|
|
export function redirect() {
|
|
const redirectUrl =
|
|
(window.location.pathname.replace(APP_BASE_PATH, '') || '/') + (window.location.search || '');
|
|
|
|
window.location.replace(redirectUrl);
|
|
}
|