Javascript bundlers

From wikinotes
Revision as of 02:26, 11 December 2022 by Will (talk | contribs) (Created page with "javascript bundlers combine all of your js source into one file, and load it for every page on your website.<br> this helps avoid CSP/CORS issues by loading js from a trusted source, and avoiding loading potentially malicious js.")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

javascript bundlers combine all of your js source into one file, and load it for every page on your website.
this helps avoid CSP/CORS issues by loading js from a trusted source, and avoiding loading potentially malicious js.