php - 2 simultaneous API calls from Vue.js App (Axios) randomly failing but working in Postman

one text

Solution:

It looks like you are using .env files for database credentials. The problem is that this is not thread safe and should not be used in production. This is a known issue. Better use a env.php file to solve this issue.

Source