feat: redirect to lilium page not found
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2024-07-15 08:21:54 +02:00
parent dcde6bb37a
commit 94470915da
1 changed files with 8 additions and 1 deletions

View File

@ -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', {