My angular app contains percent-encoded routes. Ex. /Page%201
When I run my angular app with ng serve
everything works fine.
But when I start the Scully static server and visit "http://localhost:1668/Page%201", the browser shows
Cannot GET /Page%201
I looked into my ./dist/static/assets/scully-routes.json
and I can see the ,{"route":"/Page%201"}
.
This behavior doesn't happen on routes without space.
Ex. http://localhost:1668/Page2
works just fine.