chore: update route base path

This commit is contained in:
javier ontiveros
2026-02-13 12:58:40 -06:00
committed by Adolfo R. Brandes
parent 2337a7105f
commit ed58e02eae
2 changed files with 1 additions and 1 deletions

View File

@@ -13,7 +13,6 @@ const siteConfig: SiteConfig = {
logoutUrl: 'http://local.openedx.io:8000/logout',
environment: EnvironmentTypes.DEVELOPMENT,
basename: '/authn',
apps: [authnApp],
};

View File

@@ -9,6 +9,7 @@ import { ResetPasswordPage } from './reset-password';
const routes = [
{
id: 'org.openedx.frontend.route.authn.main',
path: '/authn',
async lazy() {
const module = await import('./Main');
return { Component: module.default };