Nikita Riabininas
Nikita Riabininas
Thanks! That worked. Still, the message for the last test probably need changing.
> The solution found here - https://stackoverflow.com/questions/70469717/cant-load-a-react-app-after-starting-server > > Updating from > > ``` > const proxy = require('http-proxy-middleware'); > > module.exports = function(app) { > app.use(proxy('/proxypath', { target: ''...
Importing minified version in CRA fixes the issue. I went from: ``` import p from 'image-blob-reduce'; const pica = p(); ``` to: ``` import type { ImageBlobReduceStatic } from 'image-blob-reduce';...