Bugzilla – Attachment 180714 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 style-, css-loader to preserve compatiblity with Koha's Vue components, e.g. Dialog.vue
Bug-37911-follow-up-Use-style--css-loader-to-prese.patch (text/plain), 1.28 KB, created by
Paul Derscheid
on 2025-04-08 09:02:01 UTC
(
hide
)
Description:
Bug 37911: (follow-up) Use style-, css-loader to preserve compatiblity with Koha's Vue components, e.g. Dialog.vue
Filename:
MIME Type:
Creator:
Paul Derscheid
Created:
2025-04-08 09:02:01 UTC
Size:
1.28 KB
patch
obsolete
>From 569e11b04f5e693c90227c7527d94f8318569d2f Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Tue, 8 Apr 2025 10:59:52 +0200 >Subject: [PATCH] Bug 37911: (follow-up) Use style-, css-loader to preserve > compatiblity with Koha's Vue components, e.g. Dialog.vue > >- For now let's not rely on rspack's native css loader to parse and > bundle styles as we need to preserve compatibility. >- Reintroduce configuration block for style-, css-loader for islands. >--- > rspack.config.js | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > >diff --git a/rspack.config.js b/rspack.config.js >index c4ee7d9a49..968f30dd4a 100644 >--- a/rspack.config.js >+++ b/rspack.config.js >@@ -82,7 +82,6 @@ module.exports = [ > }, > { > experiments: { >- css: true, > outputModule: true, > }, > entry: { >@@ -126,7 +125,12 @@ module.exports = [ > path.resolve(__dirname, "t/cypress/"), > ], > type: "javascript/auto", >- } >+ }, >+ { >+ test: /\.css$/i, >+ type: "javascript/auto", >+ use: ["style-loader", "css-loader"], >+ }, > ], > }, > plugins: [ >-- >2.49.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
|
176959
|
176960
|
176961
|
176962
|
176963
|
176964
|
176965
|
176966
|
176967
|
176968
|
176969
|
176970
|
176972
|
178256
|
178257
|
178258
|
178259
|
178260
|
178261
|
178262
|
178263
|
178264
|
178265
|
178266
|
178267
|
180113
|
180114
|
180115
|
180116
|
180117
|
180118
|
180119
|
180120
|
180121
|
180122
|
180123
|
180124
|
180125
|
180129
|
180696
|
180697
| 180714 |
180805