You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike the Cloud-based version, the `serviceId` parameter is not used here. Instead, it is required to specify the path to the backend entry point hosted on the client’s infrastructure.
72
72
73
+
For WProofreader that uses "CKEditor 5" without legacy methods of installation:
74
+
75
+
```js
76
+
import { ClassicEditor } from 'ckeditor5';
77
+
import { WProofreader } from '@webspellchecker/wproofreader-ckeditor5';
78
+
...
79
+
80
+
ClassicEditor
81
+
.create( editorElement, {
82
+
plugins: [ ..., WProofreader ],
83
+
toolbar: [ ..., 'wproofreader' ],
84
+
wproofreader: {
85
+
/* config of WProofreader */
86
+
}
87
+
} )
88
+
```
89
+
73
90
## Documentation
74
91
75
92
To find out more, refer the following documentation:
0 commit comments