https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36674
--- Comment #17 from Paul Derscheid <[email protected]> --- The problem was actually introduced by > Bug 36674: Remove duplication The commit tried to DRY up the code by extracting paths into variables, using import(path) instead of import("./patron-api-client.js"). The problem is that webpack/rspack needs to see those literal strings at build time to know which files to bundle - when you use a variable, it can't figure that out until runtime. The fix is just to revert 3a6fe57c269367a3dfedee0720b0857314c77dbf. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
