Arnas

Results 2 comments of Arnas

> In .nycrc-config, have you tried using the exclude option with `"excludeAfterRemap": true`? [fullstackzach](https://github.com/fullstackzach) Using excludeAfterRemap fixed issue with node_modules showing. So it's viable for me.

Here's my simple method. Html Render page ``` const parsedHtml = htmlParser(taskDescription); return ( Description: {parsedHtml} ) ``` html-parser: ``` import ReactHtmlParser from 'react-html-parser'; import { Text } from '@react-pdf/renderer';...