You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 17, 2024. It is now read-only.
Currently you generate new files with a random string name every time there is a change to the code.
This is fine for some cases but if you use more than one server it breaks caching the files. This happens because the bundler will serve a file named random1_bundle.js from server A and random2_bundle.js from server B even if they both have the same code. So if I connect to server A I get one file and after refreshing the page and connect to server B I will get another file.
So please add the option to generate "always the same name" files for this to be usable with multiple servers.