Update docs/frontend-system/architecture/05-extension-overrides.md

Co-authored-by: Fredrik Adelöw <freben@gmail.com>
Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2024-01-15 22:42:38 +01:00
parent 147d7a4067
commit 7066b00773
@@ -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(<div>My custom search page</div>),
});
```