У меня есть код с использованием ckeditor5 и simpleupload
<html>
<head>
</head>
<body>
<form>
<textarea id="editor" name="isi"></textarea>
</form>
</body>
<script type="module" src="@ckeditor/ckeditor5-build-classic/build/ckeditor.js"> </script>
<script>
import SimpleUploadAdapter from '@ckeditor/ckeditor5-upload/src/simpleuploadadapter';
ClassicEditor
.create( document.querySelector( '#editor' ) )
.then( editor => {
plugins: [ SimpleUploadAdapter],
simpleUpload: {
// The URL that the images are uploaded to.
uploadUrl: 'http://example.com',
// Headers sent along with the XMLHttpRequest to the upload server.
headers: {
'X-CSRF-TOKEN': 'CSFR-Token',
Authorization: 'Bearer <JSON Web Token>'
}
},
console.log( editor );
} )
.catch( error => {
console.error( error );
} );
</script>
</html>
Но это ошибка с ошибкой "Uncaught SyntaxError: Невозможно использовать оператор импорта вне модуля", пожалуйста, помогите мне.