-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Internet Explorer is blank #53
Comments
Currently, CKEditor 5 isn't compatible with IE11. However, we made some research about running CKE5 in IE11, so you can read more about it in the proper ticket - ckeditor/ckeditor5#330. |
Yep, but the question seems to be quite different - @williamtang007 tries to make the app work on IE without running editor 😄 I don't have such knowledge to tell you how the |
Hi, thank you for your reply. After doing some trial and errors, and made it work. I will explain later. But first, here's what I can conclude about how First, when I use Basing myself on this hypothesis, I tried to use Vuejs components lazy loading feature. This allows for webpack to not send certain components to the browser only when needed. This brought me a little closer to the solution. In fact, I was now able to at least to not have a blank Internet Explorer page. However, whenever I navigate with Vuejs to the route that calls the component which includes CKEditor, Internet Explorer crashes. A quick fix to this was to use the router.beforeEach function and to redirect the user to a error page if it detects the use of IE. |
I use vue-cli-service build and vue-cli-service serve to build my app. I only load CKEditor modules if we're not using IE. Otherwise, I do not render the ckeditor component and I do not import it (I actually import it with require, since it's inside a condition.
The app works well with all browser (Firefox, Chrome and IE) when I do vue-cli-service build. However, if I do vue-cli-service serve to make a build, IE shows a blank page.
The text was updated successfully, but these errors were encountered: