Appearance
How To Remove Fake Api And Use Real Api
We have used msw for mocking API calls. This makes our template API ready 😍 and more easier for you to communicate with your backend.
However, you won't need fake-api if you are using real APIs. In this case please follow below steps to remove fake-api from template.
- Remove fake-api folder from
src/plugins
directory. - Add endpoints of your real api in
.env
file. Please refer.env.example
for more info. - Finally we don't need msw in our package any more so remove it from package.json
json
{
"dependencies": {
"msw": "^1.3.0"
}
}
This will remove fake-api completely from your package. 🎉
- Replace all fake-api endpoints with real api endpoints.
That's all !! You have replaced fake-api with real api.😍
WARNING
Now all (fake) API calls will result in 404 error until you replace them with your real API endpoints.
TIP
Please remove @sindresorhus/is
after removing fake-api
as it was only used in fake-api
for checking the types.