Hey! I think I found an error in [Static Prerendering docs](https://developer.moovweb.com/guides/static_prerendering#section_example__next_js_getserversideprops). There is an example of using an async function as a pre-render request function in docs: ```ts module.exports = new Router().prerender(async () => { const paths = await fetchCategoryPathsFromAPI() return paths.map(path => ({ path })) }) ``` However, TS won't let me compile this code since: <img width="940" alt="«Screenshot» 2020-12-01 at 10 08 41" src="https://user-images.githubusercontent.com/9102374/100708715-dcbad780-33bd-11eb-818d-41502c95ade6.png"> The same goes for the Next.js example: <img width="939" alt="«Screenshot» 2020-12-01 at 10 07 19" src="https://user-images.githubusercontent.com/9102374/100708765-f3f9c500-33bd-11eb-81a2-bc0c68843281.png"> The only workaround I found is to make any request function async and use an array of them as an argument for `prerender()`: <img width="438" alt="«Screenshot» 2020-12-01 at 10 08 55" src="https://user-images.githubusercontent.com/9102374/100708838-14c21a80-33be-11eb-9fde-a9d7228ed373.png"> Is this intentional? If so, I can create a PR to update docs for this page.
Hey!
I think I found an error in Static Prerendering docs.
There is an example of using an async function as a pre-render request function in docs:
However, TS won't let me compile this code since:

The same goes for the Next.js example:
The only workaround I found is to make any request function async and use an array of them as an argument for

prerender():Is this intentional?
If so, I can create a PR to update docs for this page.