You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React app is correctly served when "/" url is accessed. However if I try to open /some_route I get 404 even tho the React application should know the route.
What I need is something like:
.at("/<.+>/*", EmbeddedFilesEndpoint::::new())
Basically I need to serve the frontend app under all endpoints expect for my custom ones that are used as backend, is that possible?
The text was updated successfully, but these errors were encountered:
I am nesting a React Application inside Poem app and need to serve it under all endpoints except for some
Working example:
React app is correctly served when "/" url is accessed. However if I try to open /some_route I get 404 even tho the React application should know the route.
What I need is something like:
.at("/<.+>/*", EmbeddedFilesEndpoint::::new())
Basically I need to serve the frontend app under all endpoints expect for my custom ones that are used as backend, is that possible?
The text was updated successfully, but these errors were encountered: