From ed58e02eaef239f1b7340119f8b316616ad0d6f4 Mon Sep 17 00:00:00 2001 From: javier ontiveros Date: Fri, 13 Feb 2026 12:58:40 -0600 Subject: [PATCH] chore: update route base path --- site.config.dev.tsx | 1 - src/routes.jsx | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/site.config.dev.tsx b/site.config.dev.tsx index 84f3254d..d97b45ff 100644 --- a/site.config.dev.tsx +++ b/site.config.dev.tsx @@ -13,7 +13,6 @@ const siteConfig: SiteConfig = { logoutUrl: 'http://local.openedx.io:8000/logout', environment: EnvironmentTypes.DEVELOPMENT, - basename: '/authn', apps: [authnApp], }; diff --git a/src/routes.jsx b/src/routes.jsx index 31ae385d..9546f514 100644 --- a/src/routes.jsx +++ b/src/routes.jsx @@ -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 };