mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-04-25 12:15:50 +03:00
[GH-ISSUE #655] [FEATURE] Reduce the number of CSS and JS files #417
Labels
No labels
Fixed (Pending PR Merge)
Stale
bug
enhancement
enhancement
good first issue
help wanted
keep-open
needs more info
pull-request
question
theme
unfortunate
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/whoogle-search#417
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ngosang on GitHub (Feb 11, 2022).
Original GitHub issue: https://github.com/benbusby/whoogle-search/issues/655
When I use Whoogle I see several requests for static resources in my web browser.

Of course, this is not a big issue because the browser is smart and it has a cache to avoid requesting these files all the time.
My request is to use some tool to merge all CSS files into one and all JS files into one to increase page load speed.
In JS/NodeJS/NPM world we use Webpack to combine all static resources into one + minify the code (remove comments and other useless things for the browser). This is only required for production builds, you can have several files for development as it should be.
Example => https://code.luasoftware.com/tutorials/webpack/merge-multiple-css-into-single-file/
@DUOLabs333 commented on GitHub (Feb 11, 2022):
The problem is that, for example
autocomplete.jsis loaded depending on the environment variables.@Don-Swanson commented on GitHub (Sep 24, 2025):
This has been incorporated into the Beta release: https://github.com/benbusby/whoogle-search/releases/tag/v1.0.0-beta
Please provide feedback if this is now resolved in beta.