feat: redirect to lilium page not found
gitea/salix/pipeline/pr-dev This commit looks good
Details
gitea/salix/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
dcde6bb37a
commit
94470915da
|
@ -4,7 +4,14 @@ import getMainRoute from 'core/lib/get-main-route';
|
|||
config.$inject = ['$stateProvider', '$urlRouterProvider'];
|
||||
function config($stateProvider, $urlRouterProvider) {
|
||||
$urlRouterProvider
|
||||
.otherwise('/');
|
||||
.otherwise(async($injector, {$location}) => {
|
||||
const url = $location.$$absUrl
|
||||
.replace('5000', '9000')
|
||||
.replace('salix', 'lilium')
|
||||
.replace('#!', '#')
|
||||
.replace('client', 'customer');
|
||||
window.location.href = url;
|
||||
});
|
||||
|
||||
$stateProvider
|
||||
.state('layout', {
|
||||
|
|
Loading…
Reference in New Issue