Matthew Kwong
Matthew Kwong
@shilangyu **TL;DR: No.** The main issue is the new JSX transformation in React 17. If we simply follow the steps provided in the Github description, then the following error will...
**Workaround** Set the CRA enviroment variable `DISABLE_NEW_JSX_TRANSFORM` to `true` (default `false`). Ref: https://create-react-app.dev/docs/advanced-configuration
Just tried to build my app using the latest `preact`, it works as expected.
> Just tried to build my app using the latest `preact`, it works as expected. Well, I was not entirely right. `cra-preact build` works, but `cra-preact start` still reports the...
> Unfortunately I really don't know what else to say at the moment. I'll try to investigate around but this seems to be something new popping up on a few...
@oliviertassinari It will be great if you add a big "Looking For Maintainers" heading in the `README.md`.
The problem is, after the compilation of `create-react-app` the actual path will be different. e.g. My logo which used to be in `src/assets/images/logo.svg`, now is located in `static/media/logo.4c6bacf1.svg`.
Currently, this workaround is very basic. I'm planning to extend this to support `webp` and art direction as well. @timhagn @rburgst, I'm trying to also support `avif` as well. The...
@timhagn It's a bit weird you decided to publish it as a separated package. I thought there will be a new major release of the original one.
> Hi @timhagn, > > thanks a lot, it works, but there is one major issue, the images all seem to load twice. Even in your demo repository you can...