There is a few docker files in this repository, to assert that the project runs correctly using react 18 & react 19.
You will find the Dockerfile.base which will build and mount @grapesjs/react to each:
Dockerfile.react18Dockerfile.react19
Build this first, we build React in version 19.
docker compose build baseTo test react 18, run the following command:
docker compose build react18Wait for the build then run the react18 container:
docker compose up react18Visit http://localhost:5173/ to see the project running.
To test react 19, run the following command:
docker compose build react19Wait for the build then run the react19 container:
docker compose up react19Visit http://localhost:5174/ to see the project running.