Javascript bundlers

From wikinotes
Revision as of 02:38, 11 December 2022 by Will (talk | contribs)
(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.

See javascript webpack.