cathino

Results 28 comments of cathino

I have the same question. Does anyone know how to resolve it?

```js function scrollMouse(event) { console.log(">>> event:: ", event); } if (navigator.userAgent.toLowerCase().indexOf('firefox') === -1) { document.addEventListener('mousewheel', scrollMouse); } else { document.addEventListener('DOMMouseScroll', scrollMouse); } ``` I have use this code to test...

I tried using **parcel** instead of **vite**, there are different errors: ![截图 2024-04-29 07-39-52](https://github.com/xdan/jodit/assets/92970070/c7476a7a-bd94-4553-bee4-ff13138e78a3)

It works well with [rspack](https://www.rspack.dev/), using the rsbuild's default conf: ``` "scripts": { "dev": "NODE_ENV=development rspack serve", "build": "NODE_ENV=production rspack build", }, ```

It works well using ts + rspack + react , I created a demo [jodit_rspack_demo](https://github.com/newproplus/jodit_rspack_demo)

@xdan But the problem has not been solved. It is best that all apps compiled by various packaging tools can be used normally, rather than only apps compiled by rspack...

You can create a `Pull retuest` to merge your code.

@JuYiYang Not `push` your code to this repo. 1. At first,you should `fork` this repo to your own repo. 2. Then,commit and push your code to your own repo. 3....