Explorar el Código

remove obsolete code

Gildas hace 1 año
padre
commit
6ba7b31602
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      src/lib/single-file/fetch/content/content-fetch.js

+ 0 - 2
src/lib/single-file/fetch/content/content-fetch.js

@@ -31,8 +31,6 @@ const ERR_HOST_FETCH = "Host fetch error (SingleFile)";
 const USE_HOST_FETCH = Boolean(window.wrappedJSObject);
 
 const fetch = (url, options) => {
-	options.cache = "force-cache";
-	options.referrerPolicy = "strict-origin-when-cross-origin";
 	return window.fetch(url, options);
 };