looks like contextmenu option in monaco-editor/react not working with nextjs13?
import { editor } from ‘monaco-editor’; import Editor, {Monaco, useMonaco, loader , EditorProps} from ‘@monaco-editor/react’;//DiffEditor, …… <Editor //height=”100vh” defaultLanguage=”plaintext” defaultValue={!fileContent?””:fileContent} keepCurrentModel={true} beforeMount={handleEditorWillMount} onMount={handleEditorDidMount} onChange={handleContentChange} options={{ lineNumbers: ‘off’, contextmenu: true, roundedSelection: true, cursorStyle: “line”, automaticLayout: true, selectOnLineNumbers: true, wordWrap: “off”, fontSize: 18, minimap: { enabled: false, }, suggest: {}, }} /> as snippet from my nextjs […]