From 12a23f4f6b9601a26a6556551a3fb656a2401ccd Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Mon, 7 Apr 2025 15:02:42 +0200 Subject: [PATCH] Bug 37911: (follow-up) Tidy and remove leftover entry point for islands in first config block Signed-off-by: Jonathan Druart --- rspack.config.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/rspack.config.js b/rspack.config.js index 749b1cb41e3..bd61fe6c0f7 100644 --- a/rspack.config.js +++ b/rspack.config.js @@ -6,14 +6,14 @@ const rspack = require("@rspack/core"); module.exports = [ { resolve: { - alias: { - "@fetch": path.resolve( - __dirname, - "koha-tmpl/intranet-tmpl/prog/js/fetch" - ), + alias: { + "@fetch": path.resolve( + __dirname, + "koha-tmpl/intranet-tmpl/prog/js/fetch" + ), + }, }, - }, - experiments: { + experiments: { css: true, }, entry: { @@ -22,7 +22,6 @@ module.exports = [ "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts", "admin/record_sources": "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/admin/record_sources.ts", - islands: "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/islands.ts", }, output: { filename: "[name].js", -- 2.34.1