Vytenis
Vytenis
Tested - still memory is increasing - I used code like so ```tsx export const config = { api: { bodyParser: false, externalResolver: true, }, }; export default (req: NextApiRequest,...
And after reverting it back to http-proxy-middleware I got something better. It is still growing but this time a different plugin. 
Thank you for good explanation. In this case no errors in requests was thrown. But as you said probably I need to ignore such small memory changes. Can we have...
Try html5 video formats like: ``` [ { type: "video/webm", src: "http://video-js.zencoder.com/oceans-clip.webm" }, { type: "video/ogg", src: "http://video-js.zencoder.com/oceans-clip.ogv" }, { type: "video/mp4", src: "http://video-js.zencoder.com/oceans-clip.mp4" } ] ```
``` [ { type: "video/webm", src: "http://video-js.zencoder.com/oceans-clip.webm" }, { type: "video/ogg", src: "http://video-js.zencoder.com/oceans-clip.ogv" }, { type: "video/mp4", src: "http://video-js.zencoder.com/oceans-clip.mp4" } ] ```
another way - grab original fonts from here https://unicons.iconscout.com/release/v2.1.0/css/unicons.css and folow the paths to the fonts https://unicons.iconscout.com/release/v2.1.0/fonts/unicons-0.ttf
Its reproducible for others?
Sure. I used env settings ``` { "env": { "cypress-react-selector": { "root": "#root" } } } ```
I was testing on this repo https://github.com/FDiskas/devtalks-e2e/tree/cypress Nexjs root is `__next` and im sure that it matched setting in my test
It actually already exists `npm i D typescript-plugin-css-modules` ```json "plugins": [ { "name": "typescript-plugin-css-modules", "options": { "classnameTransform": "camelCase", "customMatcher": "\\.module\\.scss$" } } ], ```