Remove blank page route (#3933)

* remove blank page route

* remove blank page route
This commit is contained in:
Denys Vuika 2024-07-12 09:16:07 -04:00 committed by GitHub
parent e7cd5741d2
commit 5a588ff9b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 6 deletions

View File

@ -24,7 +24,7 @@
"implicitFlow": false,
"codeFlow": true,
"silentLogin": true,
"publicUrls": ["**/preview/s/*", "**/settings", "**/blank"],
"publicUrls": ["**/preview/s/*", "**/settings"],
"redirectSilentIframeUri": "{protocol}//{hostname}{:port}/assets/silent-refresh.html",
"redirectUri": "/",
"redirectUriLogout": "/",

View File

@ -22,14 +22,9 @@
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/
import { BlankPageComponent } from '@alfresco/adf-core';
import { AppLoginComponent } from './components/login/app-login.component';
export const APP_ROUTES = [
{
path: 'blank',
component: BlankPageComponent
},
{
path: 'login',
component: AppLoginComponent,