Bugzilla – Attachment 171440 Details for
Bug 37911
Prototype vue islands within static pages
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37911: (follow-up) Use webpack import annotations for more concise chunk names
Bug-37911-follow-up-Use-webpack-import-annotations.patch (text/plain), 1.14 KB, created by
Paul Derscheid
on 2024-09-13 10:26:17 UTC
(
hide
)
Description:
Bug 37911: (follow-up) Use webpack import annotations for more concise chunk names
Filename:
MIME Type:
Creator:
Paul Derscheid
Created:
2024-09-13 10:26:17 UTC
Size:
1.14 KB
patch
obsolete
>From ebcfb476b3775b7b50b28877fd2559b6834b8e9e Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Fri, 13 Sep 2024 10:24:38 +0000 >Subject: [PATCH] Bug 37911: (follow-up) Use webpack import annotations for > more concise chunk names > >--- > koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts >index 862a19df4b..9f0798ecb6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts >@@ -9,7 +9,10 @@ export const componentRegistry: Map<string, () => Promise<Component>> = new Map( > [ > "hello-islands", > async () => { >- const module = await import("../components/HelloIslands.vue"); >+ const module = await import( >+ /* webpackChunkName: "hello-islands" */ >+ "../components/HelloIslands.vue" >+ ); > return module.default; > }, > ], >-- >2.46.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37911
:
171425
|
171426
|
171432
|
171439
|
171440
|
171445
|
171459
|
171517
|
171538
|
171608
|
171685
|
172962
|
172963
|
172965
|
172966
|
172967
|
172968
|
172969
|
172970
|
172971
|
172972
|
172973
|
172974
|
172975