Skip to content

Commit 542ed78

Browse files
committed
Update readme
1 parent a1df168 commit 542ed78

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,24 @@ This package is a thin wrapper around [TinyMCE](https://github.com/tinymce/tinym
2020
|<= 8 |3.x |
2121
|< 5 | Not supported |
2222

23+
### Not yet Zoneless (Angular v21)
24+
* This integration still requires `zone.js` to ensure backward compatibility to older Angular versions. Therefore, your application will need to include `provideZoneDetection()` its providers like below:
25+
26+
```jsx
27+
import { NgModule, provideZoneChangeDetection } from '@angular/core';
28+
29+
@NgModule({
30+
declarations: [
31+
// ...
32+
],
33+
imports: [
34+
// ...
35+
],
36+
providers: [ provideZoneChangeDetection() ],
37+
bootstrap: [AppComponent]
38+
})
39+
```
40+
2341
### Issues
2442

2543
Have you found an issue with tinymce-angular or do you have a feature request?

0 commit comments

Comments
 (0)