doch keine versionierung, damit alles entweder aus dem Cache ist oder neu geladen

This commit is contained in:
Christoph Settgast 2025-01-13 22:54:44 +01:00
parent cfbe14eaaf
commit 97cd17e8bb
3 changed files with 13 additions and 13 deletions

View file

@ -1,15 +1,15 @@
{
"starterkits": [
"starterkits/sk-fedikirche.json?v=1",
"starterkits/sk-katholisch.json?v=1",
"starterkits/sk-vereine-initiativen.json?v=1",
"starterkits/sk-religionsbezogene-bildung.json?v=1",
"starterkits/sk-daily-impulse.json?v=1",
"starterkits/sk-eb-paderborn.json?v=1",
"starterkits/sk-100-morgen-wald.json?v=1",
"starterkits/sk-inklusion.json?v=1",
"starterkits/sk-nachrichten-analysen.json?v=1",
"starterkits/sp-gemeinden-und-so.json?v=1",
"starterkits/sp-evangelisch.json?v=1"
"starterkits/sk-fedikirche.json",
"starterkits/sk-katholisch.json",
"starterkits/sk-vereine-initiativen.json",
"starterkits/sk-religionsbezogene-bildung.json",
"starterkits/sk-daily-impulse.json",
"starterkits/sk-eb-paderborn.json",
"starterkits/sk-100-morgen-wald.json",
"starterkits/sk-inklusion.json",
"starterkits/sk-nachrichten-analysen.json",
"starterkits/sp-gemeinden-und-so.json",
"starterkits/sp-evangelisch.json"
]
}

View file

@ -7,7 +7,7 @@
<meta name="description" content="FediKirche gibt dir einen Einstieg in das Geschehen, rund um den Hashtag #FediKirche">
<link rel="stylesheet" href="./fonts/fonts.css?v=1.0.0">
<link rel="stylesheet" href="./style/index.css">
<script type="module" src="src/main.js?v=1.0.2" defer></script>
<script type="module" src="src/main.js?v=1.0.1" defer></script>
<meta property="og:title" content="FediKirche.de">
<meta property="og:description" content="FediKirche gibt dir einen Einstieg in das Geschehen, rund um den Hashtag #FediKirche">

View file

@ -20,7 +20,7 @@ async function initializeSite() {
const shuffleContainers = document.querySelectorAll('.shuffle-container');
const seed = Date.now();
fetch('config.json?v=1')
fetch('config.json')
.then(response => response.json())
.then(config => {
const starterkitFiles = config.starterkits;