Kirill Hmelnitski
Kirill Hmelnitski
Can you give some examples how I can use different error types with Do notation without W-variants?
Something like that? ```ts type allErrors = Error1 | Error2; Do(TE.taskEither) .bind( 'result1', pipe( TE.right(1), TE.mapLeft((err): allErrors => err), ), ) .bind('result2', TE.right(2)); ```
I recommend to use native fp-ts Do notaion - https://github.com/gcanti/fp-ts/releases/tag/2.8.0.
Is it work for io-ts v2?
@sooxiaotong, this plugin expects **slash at the end** in render routes path. For example: ```js renderRoutes: ['/', '/about/'] ``` Then plugin create folder **about** with **index.html**.