Skip to content

Commit

Permalink
Update README.md (#1417)
Browse files Browse the repository at this point in the history
The ? in line 374 was escaped with \\ which stops the custom route from working. It works without the slashes.
  • Loading branch information
bdbtst committed Apr 20, 2023
1 parent 26b52b9 commit 2473de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -371,7 +371,7 @@ Create a `routes.json` file. Pay attention to start every route with `/`.
"/api/*": "/$1",
"/:resource/:id/show": "/:resource/:id",
"/posts/:category": "/posts?category=:category",
"/articles\\?id=:id": "/posts/:id"
"/articles?id=:id": "/posts/:id"
}
```

Expand Down

0 comments on commit 2473de3

Please sign in to comment.