diff options
Diffstat (limited to 'svelte.config.js')
-rw-r--r-- | svelte.config.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/svelte.config.js b/svelte.config.js index 45bb644..b2099af 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -33,6 +33,7 @@ function shuffle(a) { return a } +console.log('svelte.config.js'); (async () => { const API_URL = 'https://skyblock-api.matdoes.dev/' @@ -49,6 +50,7 @@ function shuffle(a) { await fs.promises.writeFile('src/_donators.json', JSON.stringify(shuffle(donators)), { encoding: 'utf8' }) + console.log('wrote file!') })() /** @type {import('@sveltejs/kit').Config} */ @@ -88,6 +90,6 @@ const config = { }, }, } -}; +} -export default config; +export default config |