[Dateistruktur] starterkit zu starterpack

This commit is contained in:
Alexander Müller 2025-01-14 21:23:36 +01:00
parent 0ffb286eab
commit f464e8dc84
13 changed files with 13 additions and 13 deletions

View file

@ -1,15 +1,15 @@
{
"starterkits": [
"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"
"starterpacks": [
"starterpacks/sp-fedikirche.json",
"starterpacks/sp-katholisch.json",
"starterpacks/sp-vereine-initiativen.json",
"starterpacks/sp-religionsbezogene-bildung.json",
"starterpacks/sp-daily-impulse.json",
"starterpacks/sp-eb-paderborn.json",
"starterpacks/sp-100-morgen-wald.json",
"starterpacks/sp-inklusion.json",
"starterpacks/sp-nachrichten-analysen.json",
"starterpacks/sp-gemeinden-und-so.json",
"starterpacks/sp-evangelisch.json"
]
}

View file

@ -23,7 +23,7 @@ async function initializeSite() {
fetch('config.json')
.then(response => response.json())
.then(config => {
const starterkitFiles = config.starterkits;
const starterkitFiles = config.starterpacks;
return Promise.all(
starterkitFiles.map(file => fetch(file).then(res => res.json()))