http-server
http-server copied to clipboard
next js dynamic page
how serve next js dynamic pages like that
currently I see
Any updates?
For Nuxt projects too, users/:id
or _id.vue
doesnt work. Gives 404 error.
How to serve following urls?
/pages/users/123
Here 123 is dynamic user id. When running with nuxt start
it works fine, but with http-server it breaks
This module is a static http server which is good for serving static files (a simple file server).
It's better to make the server yourself so you have full control over it. (e.g. express
framework)
This issue has been inactive for 180 days