mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
deploy: 632f6b975f
This commit is contained in:
parent
512db43238
commit
1ce940d64a
10 changed files with 148 additions and 40 deletions
|
@ -574,6 +574,10 @@ footer a:hover,
|
|||
color: rgb(255 255 255 / 0.7);
|
||||
}
|
||||
|
||||
.text-supermild{
|
||||
color: rgb(255 255 255 / 0.4);
|
||||
}
|
||||
|
||||
table.table-custom{
|
||||
font-size: 1rem;
|
||||
line-height: 1.5rem;
|
||||
|
@ -1052,6 +1056,10 @@ table.table-custom{
|
|||
width: 4rem;
|
||||
}
|
||||
|
||||
.sm\:w-40{
|
||||
width: 10rem;
|
||||
}
|
||||
|
||||
.sm\:gap-6{
|
||||
gap: 1.5rem;
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
import { _ } from "./_layout-b9cff48f.js";
|
||||
import { default as default2 } from "../components/pages/_layout.svelte-1a54e967.js";
|
||||
import { _ } from "./_layout-fde01bab.js";
|
||||
import { default as default2 } from "../components/pages/_layout.svelte-e83d44c0.js";
|
||||
export {
|
||||
default2 as component,
|
||||
_ as universal
|
|
@ -2700,6 +2700,7 @@ parent: Web3Privacy Now
|
|||
parentUrl: https://web3privacy.info
|
||||
desc: June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research.
|
||||
authors: "💛 Collaboration of [Web3Privacy Now](https://web3privacy.info) & [ETHBrno](https://ethbrno.cz) team"
|
||||
license: This web is built with [SvelteKit](https://kit.svelte.dev/) and is [open-source](https://github.com/web3privacy/w3ps1) under CC0 license
|
||||
slogan: Diving into the culture of the Web3 privacy industry
|
||||
aggregator: Prague Blockchain Week 2023
|
||||
aggregatorUrl: http://prgblockweek.com/
|
|
@ -1,4 +1,4 @@
|
|||
import { S as SvelteComponent, i as init, s as safe_not_equal, D as create_slot, k as element, a as space, q as text, E as svg_element, x as create_component, l as claim_element, m as children, h as detach, c as claim_space, r as claim_text, F as claim_svg_element, y as claim_component, G as src_url_equal, n as attr, b as insert_hydration, H as append_hydration, z as mount_component, I as listen, u as set_data, J as update_slot_base, K as get_all_dirty_from_scope, L as get_slot_changes, f as transition_in, t as transition_out, M as destroy_each, A as destroy_component, C as noop } from "../../chunks/index-858fda85.js";
|
||||
import { S as SvelteComponent, i as init, s as safe_not_equal, D as create_slot, k as element, a as space, q as text, E as svg_element, x as create_component, l as claim_element, m as children, h as detach, c as claim_space, r as claim_text, F as claim_svg_element, y as claim_component, G as src_url_equal, n as attr, b as insert_hydration, H as append_hydration, z as mount_component, I as listen, u as set_data, J as update_slot_base, K as get_all_dirty_from_scope, L as get_slot_changes, f as transition_in, t as transition_out, d as check_outros, M as destroy_each, A as destroy_component, C as noop, g as group_outros } from "../../chunks/index-858fda85.js";
|
||||
import { S as SvelteMarkdown } from "../../chunks/SvelteMarkdown-6743e4fc.js";
|
||||
const app = "";
|
||||
function get_each_context(ctx, list, i) {
|
||||
|
@ -66,7 +66,7 @@ function create_each_block_1(ctx) {
|
|||
}
|
||||
};
|
||||
}
|
||||
function create_if_block(ctx) {
|
||||
function create_if_block_1(ctx) {
|
||||
let div;
|
||||
let each_value = (
|
||||
/*menu*/
|
||||
|
@ -206,6 +206,62 @@ function create_each_block(ctx) {
|
|||
}
|
||||
};
|
||||
}
|
||||
function create_if_block(ctx) {
|
||||
let div;
|
||||
let sveltemarkdown;
|
||||
let current;
|
||||
sveltemarkdown = new SvelteMarkdown({
|
||||
props: { source: (
|
||||
/*data*/
|
||||
ctx[0].config.license
|
||||
) }
|
||||
});
|
||||
return {
|
||||
c() {
|
||||
div = element("div");
|
||||
create_component(sveltemarkdown.$$.fragment);
|
||||
this.h();
|
||||
},
|
||||
l(nodes) {
|
||||
div = claim_element(nodes, "DIV", { class: true });
|
||||
var div_nodes = children(div);
|
||||
claim_component(sveltemarkdown.$$.fragment, div_nodes);
|
||||
div_nodes.forEach(detach);
|
||||
this.h();
|
||||
},
|
||||
h() {
|
||||
attr(div, "class", "mt-4 text-supermild");
|
||||
},
|
||||
m(target, anchor) {
|
||||
insert_hydration(target, div, anchor);
|
||||
mount_component(sveltemarkdown, div, null);
|
||||
current = true;
|
||||
},
|
||||
p(ctx2, dirty) {
|
||||
const sveltemarkdown_changes = {};
|
||||
if (dirty & /*data*/
|
||||
1)
|
||||
sveltemarkdown_changes.source = /*data*/
|
||||
ctx2[0].config.license;
|
||||
sveltemarkdown.$set(sveltemarkdown_changes);
|
||||
},
|
||||
i(local) {
|
||||
if (current)
|
||||
return;
|
||||
transition_in(sveltemarkdown.$$.fragment, local);
|
||||
current = true;
|
||||
},
|
||||
o(local) {
|
||||
transition_out(sveltemarkdown.$$.fragment, local);
|
||||
current = false;
|
||||
},
|
||||
d(detaching) {
|
||||
if (detaching)
|
||||
detach(div);
|
||||
destroy_component(sveltemarkdown);
|
||||
}
|
||||
};
|
||||
}
|
||||
function create_fragment(ctx) {
|
||||
let div20;
|
||||
let div5;
|
||||
|
@ -296,6 +352,7 @@ function create_fragment(ctx) {
|
|||
let t20;
|
||||
let div16;
|
||||
let sveltemarkdown;
|
||||
let t21;
|
||||
let current;
|
||||
let mounted;
|
||||
let dispose;
|
||||
|
@ -307,9 +364,9 @@ function create_fragment(ctx) {
|
|||
for (let i = 0; i < each_value_1.length; i += 1) {
|
||||
each_blocks[i] = create_each_block_1(get_each_context_1(ctx, each_value_1, i));
|
||||
}
|
||||
let if_block = (
|
||||
let if_block0 = (
|
||||
/*navbar*/
|
||||
ctx[1] && create_if_block(ctx)
|
||||
ctx[1] && create_if_block_1(ctx)
|
||||
);
|
||||
const default_slot_template = (
|
||||
/*#slots*/
|
||||
|
@ -328,6 +385,10 @@ function create_fragment(ctx) {
|
|||
ctx[0].config.authors
|
||||
) }
|
||||
});
|
||||
let if_block1 = (
|
||||
/*data*/
|
||||
ctx[0].config.license && create_if_block(ctx)
|
||||
);
|
||||
return {
|
||||
c() {
|
||||
div20 = element("div");
|
||||
|
@ -347,8 +408,8 @@ function create_fragment(ctx) {
|
|||
each_blocks[i].c();
|
||||
}
|
||||
t3 = space();
|
||||
if (if_block)
|
||||
if_block.c();
|
||||
if (if_block0)
|
||||
if_block0.c();
|
||||
t4 = space();
|
||||
div12 = element("div");
|
||||
div11 = element("div");
|
||||
|
@ -393,6 +454,9 @@ function create_fragment(ctx) {
|
|||
t20 = space();
|
||||
div16 = element("div");
|
||||
create_component(sveltemarkdown.$$.fragment);
|
||||
t21 = space();
|
||||
if (if_block1)
|
||||
if_block1.c();
|
||||
this.h();
|
||||
},
|
||||
l(nodes) {
|
||||
|
@ -429,8 +493,8 @@ function create_fragment(ctx) {
|
|||
div3_nodes.forEach(detach);
|
||||
div4_nodes.forEach(detach);
|
||||
t3 = claim_space(div5_nodes);
|
||||
if (if_block)
|
||||
if_block.l(div5_nodes);
|
||||
if (if_block0)
|
||||
if_block0.l(div5_nodes);
|
||||
div5_nodes.forEach(detach);
|
||||
t4 = claim_space(div20_nodes);
|
||||
div12 = claim_element(div20_nodes, "DIV", { class: true });
|
||||
|
@ -517,6 +581,9 @@ function create_fragment(ctx) {
|
|||
var div16_nodes = children(div16);
|
||||
claim_component(sveltemarkdown.$$.fragment, div16_nodes);
|
||||
div16_nodes.forEach(detach);
|
||||
t21 = claim_space(div17_nodes);
|
||||
if (if_block1)
|
||||
if_block1.l(div17_nodes);
|
||||
div17_nodes.forEach(detach);
|
||||
div18_nodes.forEach(detach);
|
||||
div19_nodes.forEach(detach);
|
||||
|
@ -557,7 +624,7 @@ function create_fragment(ctx) {
|
|||
ctx[0].config.parent);
|
||||
attr(a2, "href", a2_href_value = /*data*/
|
||||
ctx[0].config.parentUrl);
|
||||
attr(div13, "class", "w-32 sm:w-42");
|
||||
attr(div13, "class", "w-32 sm:w-40");
|
||||
attr(div14, "class", "grow");
|
||||
attr(path, "d", "M28.0266 3.12733C26.9955 3.62938 25.8872 3.96853 24.7242 4.12112C25.9113 3.34005 26.8231 2.10325 27.2524 0.629411C26.1413 1.35279 24.9107 1.87791 23.6009 2.16092C22.5522 0.934264 21.0578 0.167969 19.4039 0.167969C16.2285 0.167969 13.6538 2.99367 13.6538 6.47907C13.6538 6.97373 13.7047 7.45548 13.8028 7.91738C9.02398 7.6542 4.78719 5.14151 1.95117 1.3231C1.45622 2.25521 1.17259 3.33929 1.17259 4.49596C1.17259 6.68564 2.18771 8.61738 3.73058 9.74913C2.78804 9.71637 1.90142 9.43244 1.1262 8.95977C1.12555 8.98607 1.12555 9.01252 1.12555 9.03913C1.12555 12.0969 3.1076 14.6476 5.73804 15.2278C5.25556 15.3721 4.74758 15.4491 4.2232 15.4491C3.85268 15.4491 3.49255 15.4095 3.14137 15.3359C3.87315 17.8432 5.99658 19.6679 8.51282 19.7187C6.54493 21.4115 4.06569 22.4206 1.37163 22.4206C0.907503 22.4206 0.449828 22.3906 0 22.3323C2.54468 24.1231 5.56708 25.168 8.81424 25.168C19.3905 25.168 25.1742 15.5511 25.1742 7.21076C25.1742 6.93712 25.1686 6.66503 25.1576 6.39416C26.2809 5.50451 27.2556 4.39306 28.0265 3.12733H28.0266Z");
|
||||
attr(path, "fill", "white");
|
||||
|
@ -596,8 +663,8 @@ function create_fragment(ctx) {
|
|||
each_blocks[i].m(div2, null);
|
||||
}
|
||||
append_hydration(div5, t3);
|
||||
if (if_block)
|
||||
if_block.m(div5, null);
|
||||
if (if_block0)
|
||||
if_block0.m(div5, null);
|
||||
append_hydration(div20, t4);
|
||||
append_hydration(div20, div12);
|
||||
append_hydration(div12, div11);
|
||||
|
@ -643,6 +710,9 @@ function create_fragment(ctx) {
|
|||
append_hydration(div17, t20);
|
||||
append_hydration(div17, div16);
|
||||
mount_component(sveltemarkdown, div16, null);
|
||||
append_hydration(div17, t21);
|
||||
if (if_block1)
|
||||
if_block1.m(div17, null);
|
||||
current = true;
|
||||
if (!mounted) {
|
||||
dispose = listen(
|
||||
|
@ -694,16 +764,16 @@ function create_fragment(ctx) {
|
|||
/*navbar*/
|
||||
ctx2[1]
|
||||
) {
|
||||
if (if_block) {
|
||||
if_block.p(ctx2, dirty);
|
||||
if (if_block0) {
|
||||
if_block0.p(ctx2, dirty);
|
||||
} else {
|
||||
if_block = create_if_block(ctx2);
|
||||
if_block.c();
|
||||
if_block.m(div5, null);
|
||||
if_block0 = create_if_block_1(ctx2);
|
||||
if_block0.c();
|
||||
if_block0.m(div5, null);
|
||||
}
|
||||
} else if (if_block) {
|
||||
if_block.d(1);
|
||||
if_block = null;
|
||||
} else if (if_block0) {
|
||||
if_block0.d(1);
|
||||
if_block0 = null;
|
||||
}
|
||||
if ((!current || dirty & /*data*/
|
||||
1) && t5_value !== (t5_value = /*data*/
|
||||
|
@ -788,28 +858,55 @@ function create_fragment(ctx) {
|
|||
sveltemarkdown_changes.source = /*data*/
|
||||
ctx2[0].config.authors;
|
||||
sveltemarkdown.$set(sveltemarkdown_changes);
|
||||
if (
|
||||
/*data*/
|
||||
ctx2[0].config.license
|
||||
) {
|
||||
if (if_block1) {
|
||||
if_block1.p(ctx2, dirty);
|
||||
if (dirty & /*data*/
|
||||
1) {
|
||||
transition_in(if_block1, 1);
|
||||
}
|
||||
} else {
|
||||
if_block1 = create_if_block(ctx2);
|
||||
if_block1.c();
|
||||
transition_in(if_block1, 1);
|
||||
if_block1.m(div17, null);
|
||||
}
|
||||
} else if (if_block1) {
|
||||
group_outros();
|
||||
transition_out(if_block1, 1, 1, () => {
|
||||
if_block1 = null;
|
||||
});
|
||||
check_outros();
|
||||
}
|
||||
},
|
||||
i(local) {
|
||||
if (current)
|
||||
return;
|
||||
transition_in(default_slot, local);
|
||||
transition_in(sveltemarkdown.$$.fragment, local);
|
||||
transition_in(if_block1);
|
||||
current = true;
|
||||
},
|
||||
o(local) {
|
||||
transition_out(default_slot, local);
|
||||
transition_out(sveltemarkdown.$$.fragment, local);
|
||||
transition_out(if_block1);
|
||||
current = false;
|
||||
},
|
||||
d(detaching) {
|
||||
if (detaching)
|
||||
detach(div20);
|
||||
destroy_each(each_blocks, detaching);
|
||||
if (if_block)
|
||||
if_block.d();
|
||||
if (if_block0)
|
||||
if_block0.d();
|
||||
if (default_slot)
|
||||
default_slot.d(detaching);
|
||||
destroy_component(sveltemarkdown);
|
||||
if (if_block1)
|
||||
if_block1.d();
|
||||
mounted = false;
|
||||
dispose();
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
import { l } from "../../chunks/_layout-b9cff48f.js";
|
||||
export {
|
||||
l as load
|
||||
};
|
4
_app/immutable/modules/pages/_layout.js-c5ea80df.js
Normal file
4
_app/immutable/modules/pages/_layout.js-c5ea80df.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
import { l } from "../../chunks/_layout-fde01bab.js";
|
||||
export {
|
||||
l as load
|
||||
};
|
|
@ -900,7 +900,7 @@ const __vitePreload = function preload(baseModule, deps, importerUrl) {
|
|||
};
|
||||
const matchers = {};
|
||||
const nodes = [
|
||||
() => __vitePreload(() => import("./chunks/0-fedbcc28.js"), true ? ["./chunks/0-fedbcc28.js","./chunks/_layout-b9cff48f.js","./components/pages/_layout.svelte-1a54e967.js","./chunks/index-858fda85.js","./chunks/SvelteMarkdown-6743e4fc.js","./assets/_layout-6fbaac9c.css"] : void 0, import.meta.url),
|
||||
() => __vitePreload(() => import("./chunks/0-93117e6c.js"), true ? ["./chunks/0-93117e6c.js","./chunks/_layout-fde01bab.js","./components/pages/_layout.svelte-e83d44c0.js","./chunks/index-858fda85.js","./chunks/SvelteMarkdown-6743e4fc.js","./assets/_layout-e9a653b6.css"] : void 0, import.meta.url),
|
||||
() => __vitePreload(() => import("./chunks/1-a708a445.js"), true ? ["./chunks/1-a708a445.js","./components/error.svelte-b9497535.js","./chunks/index-858fda85.js","./chunks/singletons-1811cedd.js"] : void 0, import.meta.url),
|
||||
() => __vitePreload(() => import("./chunks/2-f658540d.js"), true ? ["./chunks/2-f658540d.js","./components/pages/_page.svelte-9e4fa11d.js","./chunks/index-858fda85.js","./chunks/SvelteMarkdown-6743e4fc.js"] : void 0, import.meta.url)
|
||||
];
|
|
@ -1 +1 @@
|
|||
{"version":"1676311207734"}
|
||||
{"version":"1676312118000"}
|
|
@ -11,6 +11,7 @@
|
|||
"parentUrl": "https://web3privacy.info",
|
||||
"desc": "June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research.",
|
||||
"authors": "💛 Collaboration of [Web3Privacy Now](https://web3privacy.info) & [ETHBrno](https://ethbrno.cz) team",
|
||||
"license": "This web is built with [SvelteKit](https://kit.svelte.dev/) and is [open-source](https://github.com/web3privacy/w3ps1) under CC0 license",
|
||||
"slogan": "Diving into the culture of the Web3 privacy industry",
|
||||
"aggregator": "Prague Blockchain Week 2023",
|
||||
"aggregatorUrl": "http://prgblockweek.com/",
|
||||
|
|
23
index.html
23
index.html
|
@ -6,14 +6,14 @@
|
|||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta http-equiv="content-security-policy" content="">
|
||||
<link href="./_app/immutable/assets/_layout-6fbaac9c.css" rel="stylesheet">
|
||||
<link rel="modulepreload" href="./_app/immutable/start-26cdd327.js">
|
||||
<link href="./_app/immutable/assets/_layout-e9a653b6.css" rel="stylesheet">
|
||||
<link rel="modulepreload" href="./_app/immutable/start-e39f0ce4.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/chunks/index-858fda85.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/chunks/singletons-1811cedd.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_layout.svelte-1a54e967.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_layout.svelte-e83d44c0.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/chunks/SvelteMarkdown-6743e4fc.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/modules/pages/_layout.js-3c5f0c83.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/chunks/_layout-b9cff48f.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/modules/pages/_layout.js-c5ea80df.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/chunks/_layout-fde01bab.js">
|
||||
<link rel="modulepreload" href="./_app/immutable/components/pages/_page.svelte-9e4fa11d.js"><title>Web3Privacy Prague 2023 | Monday, 5. June 2023</title><!-- HEAD_svelte-1v6y0me_START --><meta name="description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="twitter:card" content="summary"><meta name="twitter:site" content="@web3privacy"><meta name="twitter:title" content="Web3Privacy Prague 2023"><meta name="twitter:description" content="June 5, 2023 - A lunarpunk conference focused on privacy in the Web3 industry as a complement to the Web3Privacy Now research."><meta name="twitter:image" content="https://prague.web3privacy.info/web3privacy.png"><!-- HEAD_svelte-1v6y0me_END -->
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
|
@ -160,20 +160,21 @@
|
|||
<div class="text-lg markdown"><p>Venue X10 (full name "<a href="https://divadlox10.cz">Divadlo X10</a>") is located in the centre of Prague near the metro station <em>Národní Třída</em> (Line B) and <em>Můstek</em> (Line A,C). The address is <a href="https://goo.gl/maps/Yh8qWagnqB1DvK676">Charvátova 10/39, Prague 1, 110 00</a> (<a href="https://goo.gl/maps/Yh8qWagnqB1DvK676">Google Maps</a>).</p></div>
|
||||
</div></div></div></div>
|
||||
|
||||
<footer class="pb-16 bg-black"><div class="middle-pane-big pt-10 mx-auto"><div class="flex gap-4"><div class="grow"><div class="w-32 sm:w-42"><a href="https://web3privacy.info"><img src="/web3privacy-cropped.jpg" alt="Web3Privacy Now"></a></div></div>
|
||||
<footer class="pb-16 bg-black"><div class="middle-pane-big pt-10 mx-auto"><div class="flex gap-4"><div class="grow"><div class="w-32 sm:w-40"><a href="https://web3privacy.info"><img src="/web3privacy-cropped.jpg" alt="Web3Privacy Now"></a></div></div>
|
||||
<div class="text-right"><div class=""><a class="inline-block w-5 mr-1" href="https://twitter.com/web3privacy"><svg viewBox="0 0 29 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.0266 3.12733C26.9955 3.62938 25.8872 3.96853 24.7242 4.12112C25.9113 3.34005 26.8231 2.10325 27.2524 0.629411C26.1413 1.35279 24.9107 1.87791 23.6009 2.16092C22.5522 0.934264 21.0578 0.167969 19.4039 0.167969C16.2285 0.167969 13.6538 2.99367 13.6538 6.47907C13.6538 6.97373 13.7047 7.45548 13.8028 7.91738C9.02398 7.6542 4.78719 5.14151 1.95117 1.3231C1.45622 2.25521 1.17259 3.33929 1.17259 4.49596C1.17259 6.68564 2.18771 8.61738 3.73058 9.74913C2.78804 9.71637 1.90142 9.43244 1.1262 8.95977C1.12555 8.98607 1.12555 9.01252 1.12555 9.03913C1.12555 12.0969 3.1076 14.6476 5.73804 15.2278C5.25556 15.3721 4.74758 15.4491 4.2232 15.4491C3.85268 15.4491 3.49255 15.4095 3.14137 15.3359C3.87315 17.8432 5.99658 19.6679 8.51282 19.7187C6.54493 21.4115 4.06569 22.4206 1.37163 22.4206C0.907503 22.4206 0.449828 22.3906 0 22.3323C2.54468 24.1231 5.56708 25.168 8.81424 25.168C19.3905 25.168 25.1742 15.5511 25.1742 7.21076C25.1742 6.93712 25.1686 6.66503 25.1576 6.39416C26.2809 5.50451 27.2556 4.39306 28.0265 3.12733H28.0266Z" fill="white"></path></svg></a>
|
||||
<a href="https://twitter.com/web3privacy" class="text-2xl no-underline hover:underline">@web3privacy</a></div>
|
||||
<div class="mt-4 text-mild"><p>💛 Collaboration of <a href="https://web3privacy.info">Web3Privacy Now</a> & <a href="https://ethbrno.cz">ETHBrno</a> team</p></div></div></div></div></footer></div>
|
||||
<div class="mt-4 text-mild"><p>💛 Collaboration of <a href="https://web3privacy.info">Web3Privacy Now</a> & <a href="https://ethbrno.cz">ETHBrno</a> team</p></div>
|
||||
<div class="mt-4 text-supermild"><p>This web is built with <a href="https://kit.svelte.dev/">SvelteKit</a> and is <a href="https://github.com/web3privacy/w3ps1">open-source</a> under CC0 license</p></div></div></div></div></footer></div>
|
||||
|
||||
|
||||
<script type="module" data-sveltekit-hydrate="veysjs">
|
||||
import { start } from "./_app/immutable/start-26cdd327.js";
|
||||
<script type="module" data-sveltekit-hydrate="b5w514">
|
||||
import { start } from "./_app/immutable/start-e39f0ce4.js";
|
||||
|
||||
start({
|
||||
assets: "",
|
||||
env: {},
|
||||
target: document.querySelector('[data-sveltekit-hydrate="veysjs"]').parentNode,
|
||||
version: "1676311207734",
|
||||
target: document.querySelector('[data-sveltekit-hydrate="b5w514"]').parentNode,
|
||||
version: "1676312118000",
|
||||
hydrate: {
|
||||
node_ids: [0, 2],
|
||||
data: [{type:"data",data:null,uses:{}},null],
|
||||
|
|
Loading…
Reference in a new issue