Hi,
I’ve created an App and wish to have two resources in it, the frontend sitting under mydomain/
and the backend sitting under mydomain/api/
.
I’ve created the backend resource first (it’s an express.js app, works, also has its own router) and it is now stuck with serving the /
, I can’t find how to change it. I can add more HTTP Request Routes but not remove the root one. When I try to have the frontend serve /
, I get the error “Route already in use by the [backend] component”.
How do I make it so that the backend serves mydomain/api/
and the frontend all the other routes including root?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
I believe that you should be able to edit the default route rather than adding a new one and then deleting the default route:
/
route and add the/api
prefixAfter that try to change the route for the frontend component as well.
Let me know how it goes!
Best,
Bobby