From 6a071509fca5adb09b6f472a95a9d8678b52bba6 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Fri, 29 Dec 2023 17:52:32 +0100 Subject: [PATCH] Link to fetcher source code --- .docs/content/2.essentials/2.fetchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docs/content/2.essentials/2.fetchers.md b/.docs/content/2.essentials/2.fetchers.md index 2da3831..3fe0738 100644 --- a/.docs/content/2.essentials/2.fetchers.md +++ b/.docs/content/2.essentials/2.fetchers.md @@ -57,7 +57,7 @@ This is the list of features it needs: - Send JSON, Formdata or normal strings - get final destination url -It's not recommended to do this at all, but if you have to. You can base your code on the original implementation of `makeStandardFetcher`. Check the source code for it. +It's not recommended to do this at all, but if you have to. You can base your code on the original implementation of `makeStandardFetcher`. Check the out [source code for it here](https://github.com/movie-web/providers/blob/dev/src/fetchers/standardFetch.ts). Here is a basic template on how to make your own custom fetcher: