Skip to content

Commit 05a041f

Browse files
committed
Add glossary slug route to framer rewrites (#6594)
### TL;DR Added a rewrite rule for glossary detail pages in the dashboard app. ### What changed? Added a new path `/learn/glossary/:glossary_slug` to the framer-rewrites.js file to support individual glossary term pages. ### How to test? 1. Navigate to a glossary term detail page (e.g., `/learn/glossary/some-term`) 2. Verify that the page loads correctly and the routing works as expected ### Why make this change? To enable proper routing for individual glossary term pages, allowing users to access specific glossary entries directly through their unique URLs. This complements the existing glossary index page that was already configured.
1 parent 3d140ee commit 05a041f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

apps/dashboard/framer-rewrites.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ module.exports = [
5353
"/learn/guides/:guide_slug",
5454
"/learn/courses",
5555
"/learn/glossary",
56+
"/learn/glossary/:glossary_slug",
5657
// -- faucets --
5758
"/faucets",
5859
];

0 commit comments

Comments
 (0)