Nicola

Results 10 comments of Nicola

Hello @obahareth , thank you for your reply. The react-intl version which I'm using is 3.12.1 and the arrow functions I'm talking about are located in some files in the...

It makes sense to me. Since the "module" in package.json isn't official yet, I would add a flag to enable this function, or at least it should be mentioned in...

I had this issue too on a Docker Linux image, I solved following the cwep Google guide: https://developers.google.com/speed/webp/docs/compiling#preparing_the_platform TLDR: `apt-get install -y libjpeg-dev libpng-dev libtiff-dev libgif-dev`

> ASAP on the other hand takes the resolution only as a guide and will give you optimal* number of point for the specified resolution. I would add this information...

I would love seeing this become a thing!

I've done what @JanithaR suggested and it works as it should, but now when I create the store with `createStore(persistReducer, initialState)`, with _initialState_ as below ``` type ApplicationState = {...

Editing first line of `Dockerfile` by replacing `FROM --platform=$BUILDPLATFORM` with `FROM --platform=${BUILDPLATFORM:-linux/arm64}` allowed me to complete the build.

I don't think a change in Dockerfile is needed since my fallback only works for arm64 architectures. I'd rather suggest adding a fallback using a new .env defined argument, so...