From 7066b00773acf715a51e7694205e4ec8c95f9289 Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Mon, 15 Jan 2024 22:42:38 +0100 Subject: [PATCH] Update docs/frontend-system/architecture/05-extension-overrides.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fredrik Adelöw Signed-off-by: Camila Belo --- docs/frontend-system/architecture/05-extension-overrides.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/frontend-system/architecture/05-extension-overrides.md b/docs/frontend-system/architecture/05-extension-overrides.md index 03ead23537..5dff6a3ccd 100644 --- a/docs/frontend-system/architecture/05-extension-overrides.md +++ b/docs/frontend-system/architecture/05-extension-overrides.md @@ -93,7 +93,7 @@ Imagine you have a plugin with the ID `'search'`, and the plugin provides a page const customSearchPage = createPageExtension({ namespace: 'search', // Omitting name since it is the index plugin page - defaultPath: 'search', + defaultPath: '/search', loader: () => Promise.resolve(
My custom search page
), }); ```