diff options
author | Varun Patil <varunpatil@ucla.edu> | 2023-05-16 16:22:15 -0700 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-05-23 22:34:14 +0200 |
commit | 48e1a5834585703e435fc562629e48113e3e2485 (patch) | |
tree | 8b4ed47941468588b52355e836937230c8760098 /apps/comments/src/components/Comment.vue | |
parent | 66a8a9fba1b92d63b852b1606d9f3bb0400a99cf (diff) | |
download | nextcloud-server-48e1a5834585703e435fc562629e48113e3e2485.tar.gz nextcloud-server-48e1a5834585703e435fc562629e48113e3e2485.zip |
Optimize webpack chunks
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Diffstat (limited to 'apps/comments/src/components/Comment.vue')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index 5c58ec8b1fd..7ccf6204aa1 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -110,7 +110,7 @@ import NcActions from '@nextcloud/vue/dist/Components/NcActions.js' import NcActionSeparator from '@nextcloud/vue/dist/Components/NcActionSeparator.js' import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js' import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' -import NcRichContenteditable from '@nextcloud/vue/dist/Components/NcRichContenteditable.js' +const NcRichContenteditable = () => import('@nextcloud/vue/dist/Components/NcRichContenteditable') import RichEditorMixin from '@nextcloud/vue/dist/Mixins/richEditor.js' import ArrowRight from 'vue-material-design-icons/ArrowRight.vue' |