I have a big project and I use the Kendo react editor.
When the build is done within the pipeline, perhaps due to some memory limitation, an error occurs.
However, removing the editor tools completes the build.
Example Success (remove tools from Editor)
import { Editor, EditorTools } from "@progress/kendo-react-editor";
const App = () => {
return (
<Editor
contentStyle={{
height: 630,
}}
defaultContent={content}
/>
);
};
Example Fail (with tools in Editor)
import { Editor, EditorTools } from "@progress/kendo-react-editor";
const { Bold } = EditorTools;
const App = () => {
return (
<Editor
tools={[[Bold]]}
contentStyle={{
height: 630,
}}
defaultContent={content}
/>
);
};
Any idea how to solve this?