1π
β
The first issue ( error in web console) is because, you have routed /api
to your backend. So all the calls beginning with /api will route to backend ( port : 8000 ) and other will route to the vue app ( other port β may be 5173 )
Change this url to : /api/shoppinglistitems
and this will hit the backend.
Regarding second issue, the error is with the node js api code. Please provide the code you wrote for shoppinglistitems
api.
π€sachin
Source:stackexchange.com