Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions examples/basic/content/docs/tips-&-tricks.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Tips & Tricks
description: Useful tips and tricks
order: 10
---

# Tips & Tricks

Some helpful tips and tricks for using Chronicle.
2 changes: 1 addition & 1 deletion packages/chronicle/src/server/entry-server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import serverAssets from './entry-server?assets=ssr';
export default {
async fetch(req: Request) {
const url = new URL(req.url);
const pathname = url.pathname;
const pathname = decodeURIComponent(url.pathname);

const config = loadConfig();
const route = resolveRoute(pathname, config);
Expand Down
Loading