I have a frontend-app, written in Vue.js, that displays data generated by a backend server. I would now like to run both, the frontend application and the backend server, on the same machine and make requests only locally, before providing the user with the information.
Currently, the requests are executed by the browser of each client, as the requests are made in the <script> tag of the Vue.js page source code. Is there any way I can implement it in a way that the frontend-app itself makes the requests, and not the clients?
Thanks!