1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00

Maintenance: This commit updates to webpack v5 and esbuild. I'm still testing it, but I think this'll work.

This commit is contained in:
SirStendec 2023-09-01 17:01:52 -04:00
parent cef58241d4
commit 10ca28098b
20 changed files with 3086 additions and 3877 deletions

View file

@ -6,7 +6,7 @@
return;
const HOST = location.hostname,
SERVER = __EXTENSION_PATH__,
SERVER = browser.runtime.getURL("web/"),
script = document.createElement('script');
let FLAVOR =
@ -21,5 +21,6 @@
script.async = true;
script.crossOrigin = 'anonymous';
script.src = `${SERVER}/${FLAVOR}.js?_=${Date.now()}`;
script.dataset.path = SERVER;
document.head.appendChild(script);
})();