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
At the moment chat commands consists of 4 modules that are loaded separately by the browser (and one after another because they are only loaded through the include, it needs at least 3 round trips to the server to load the modules). This makes the load time of the module quite high.
For that reason I suggest to bundle the JavaScript modules into a single file and also add minification, which would further improve the load time.
If you need help with setting up a bundler (such as webpack or rollup), feel free to contact me for help.
The text was updated successfully, but these errors were encountered:
At the moment chat commands consists of 4 modules that are loaded separately by the browser (and one after another because they are only loaded through the
include
, it needs at least 3 round trips to the server to load the modules). This makes the load time of the module quite high.For that reason I suggest to bundle the JavaScript modules into a single file and also add minification, which would further improve the load time.
If you need help with setting up a bundler (such as webpack or rollup), feel free to contact me for help.
The text was updated successfully, but these errors were encountered: