I'm using scully for prerendering bunch of routes, and I skip routes for /board/:boardId
:
routes: {
"/board": {
type: 'ignored'
}
},
extraRoutes: ["/",
"/dashboard",
"/uses"
]
The /board route is dynamic, i.e. it looks like /board/[user-generated-boardId], but when I navigate to it using npx scully serve
, It breaks, e.g.
I don't want to prerender /board/:boardId routes, and they should work just like an angular SPA, but seems like scully server is trying to map them to a directory path within dist
.
Any suggestion on how I can get both static and dynamic routes working with scully, would be great ! Thanks.