ckeditor / ckeditor5

Powerful rich text editor framework with a modular architecture, modern integrations, and features like collaborative editing.
https://ckeditor.com/ckeditor-5
Other
9.36k stars 3.68k forks source link

ckeditor5/ckeditor5.css #17080

Open umutgltekin opened 1 week ago

umutgltekin commented 1 week ago

Ekran görüntüsü 2024-09-12 001520

Error: Failed to find 'ckeditor5/ckeditor5.css' in [ C:\Users\Umut\Desktop\HipoIK\nethr-new-spa\src\app\pages\announcement_components\announcement-enter ] @import 'ckeditor5/ckeditor5.css' that I added to my scss file; this value gives an error when I run my project, what is the reason?

Witoso commented 1 week ago

Hi! Please describe a bit more the environment you're running your editor in. Thanks!

umutgltekin commented 1 week ago

my project is an angular project, I was using ckeditor4 before, I wanted to switch to 5 and after all the configurations I encountered this error, this ckeditor5/ckeditor5.css file is not in this directory, but I could not find what I was missing. thanks.

Witoso commented 1 week ago

Please provide specific versions, all snippets in the docs work for us, we want to understand better why this doesn't work for you.

umutgltekin commented 1 week ago
"@ckeditor/ckeditor5-angular": "^8.0.0",
"@ckeditor/ckeditor5-build-classic": "^43.1.0",
"@ckeditor/ckeditor5-core": "^43.1.0",
"@ckeditor/ckeditor5-editor-classic": "^43.1.0",   
   "ckeditor5": "^43.1.0",

   these are the versions I use
Witoso commented 1 week ago

Angular version is also needed. I already see you have more packages than needed:

"@ckeditor/ckeditor5-build-classic": "^43.1.0",
"@ckeditor/ckeditor5-core": "^43.1.0",

you can remove them.

Witoso commented 1 week ago

Could you try doing @import "~ckeditor5/ckeditor5.css"; it's possible scss requires ~.

umutgltekin commented 1 week ago

not working

Witoso commented 6 days ago

Could you share with us some reproducible sample?