mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-12 18:10:06 -04:00
Rebuild /docs
This commit is contained in:
parent
dbafe60db2
commit
3b3778a407
17 changed files with 18 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
".svelte-kit/runtime/client/start.js": {
|
".svelte-kit/runtime/client/start.js": {
|
||||||
"file": "start-01c47118.js",
|
"file": "start-0281ef27.js",
|
||||||
"src": ".svelte-kit/runtime/client/start.js",
|
"src": ".svelte-kit/runtime/client/start.js",
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"imports": [
|
"imports": [
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
BIN
docs/_app/start-0281ef27.js.br
Normal file
BIN
docs/_app/start-0281ef27.js.br
Normal file
Binary file not shown.
BIN
docs/_app/start-0281ef27.js.gz
Normal file
BIN
docs/_app/start-0281ef27.js.gz
Normal file
Binary file not shown.
|
@ -1 +1 @@
|
||||||
{"version":"1651576934419"}
|
{"version":"1652029742872"}
|
Binary file not shown.
Binary file not shown.
|
@ -19,7 +19,7 @@
|
||||||
<link rel="stylesheet" href="/_app/assets/vendor-c8b32335.css">
|
<link rel="stylesheet" href="/_app/assets/vendor-c8b32335.css">
|
||||||
<link rel="stylesheet" href="/_app/assets/pages/__layout.svelte-0f0f9924.css">
|
<link rel="stylesheet" href="/_app/assets/pages/__layout.svelte-0f0f9924.css">
|
||||||
<link rel="stylesheet" href="/_app/assets/pages/index.svelte-fade4f59.css">
|
<link rel="stylesheet" href="/_app/assets/pages/index.svelte-fade4f59.css">
|
||||||
<link rel="modulepreload" href="/_app/start-01c47118.js">
|
<link rel="modulepreload" href="/_app/start-0281ef27.js">
|
||||||
<link rel="modulepreload" href="/_app/chunks/vendor-e06f8fa1.js">
|
<link rel="modulepreload" href="/_app/chunks/vendor-e06f8fa1.js">
|
||||||
<link rel="modulepreload" href="/_app/pages/__layout.svelte-8a4b19fb.js">
|
<link rel="modulepreload" href="/_app/pages/__layout.svelte-8a4b19fb.js">
|
||||||
<link rel="modulepreload" href="/_app/chunks/store-93a026ed.js">
|
<link rel="modulepreload" href="/_app/chunks/store-93a026ed.js">
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
|
|
||||||
|
|
||||||
<script type="module" data-hydrate="1wsdtjz">
|
<script type="module" data-hydrate="1wsdtjz">
|
||||||
import { start } from "/_app/start-01c47118.js";
|
import { start } from "/_app/start-0281ef27.js";
|
||||||
start({
|
start({
|
||||||
target: document.querySelector('[data-hydrate="1wsdtjz"]').parentNode,
|
target: document.querySelector('[data-hydrate="1wsdtjz"]').parentNode,
|
||||||
paths: {"base":"","assets":""},
|
paths: {"base":"","assets":""},
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
const build = [
|
const build = [
|
||||||
"/_app/start-01c47118.js",
|
"/_app/start-0281ef27.js",
|
||||||
"/_app/pages/__layout.svelte-8a4b19fb.js",
|
"/_app/pages/__layout.svelte-8a4b19fb.js",
|
||||||
"/_app/assets/pages/__layout.svelte-0f0f9924.css",
|
"/_app/assets/pages/__layout.svelte-0f0f9924.css",
|
||||||
"/_app/error.svelte-eafc136f.js",
|
"/_app/error.svelte-eafc136f.js",
|
||||||
|
@ -15,7 +15,7 @@ const files = [
|
||||||
"/logo_512.png",
|
"/logo_512.png",
|
||||||
"/manifest.json"
|
"/manifest.json"
|
||||||
];
|
];
|
||||||
const version = "1651576934419";
|
const version = "1652029742872";
|
||||||
const ASSETS = `cache_${version}`;
|
const ASSETS = `cache_${version}`;
|
||||||
const to_cache = build.concat(files);
|
const to_cache = build.concat(files);
|
||||||
const staticAssets = new Set(to_cache);
|
const staticAssets = new Set(to_cache);
|
||||||
|
@ -51,13 +51,16 @@ self.addEventListener("fetch", (event) => {
|
||||||
return;
|
return;
|
||||||
const url = new URL(event.request.url);
|
const url = new URL(event.request.url);
|
||||||
const isHttp = url.protocol.startsWith("http");
|
const isHttp = url.protocol.startsWith("http");
|
||||||
const isDevServerRequest = url.hostname === self.location.hostname && url.port !== self.location.port;
|
const isSameOrigin = url.host === self.location.host;
|
||||||
const isStaticAsset = url.host === self.location.host && staticAssets.has(url.pathname);
|
const isStaticAsset = isSameOrigin && staticAssets.has(url.pathname);
|
||||||
const skipBecauseUncached = event.request.cache === "only-if-cached" && !isStaticAsset;
|
const skipBecauseUncached = event.request.cache === "only-if-cached" && !isStaticAsset;
|
||||||
if (isHttp && !isDevServerRequest && !skipBecauseUncached) {
|
if (!isHttp || !isSameOrigin || skipBecauseUncached)
|
||||||
event.respondWith((async () => {
|
return;
|
||||||
const cachedAsset = isStaticAsset && await caches.match(event.request);
|
event.respondWith((async () => {
|
||||||
return cachedAsset || fetchAndCache(event.request);
|
let cachedAsset;
|
||||||
})());
|
if (isStaticAsset) {
|
||||||
}
|
cachedAsset = await caches.match(event.request);
|
||||||
|
}
|
||||||
|
return cachedAsset || fetchAndCache(event.request);
|
||||||
|
})());
|
||||||
});
|
});
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue