diff options
author | mat <github@matdoes.dev> | 2022-03-03 19:07:32 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-03-03 19:07:32 -0600 |
commit | 3340d4f82081351606f2ecb4c4442b0264969d6f (patch) | |
tree | ed852600a17be8fa65b330f0584a7dca227a9aff /svelte.config.js | |
parent | 8168f3807966913640e95e074248f31e7444416c (diff) | |
download | skyblock-stats-3340d4f82081351606f2ecb4c4442b0264969d6f.tar.gz skyblock-stats-3340d4f82081351606f2ecb4c4442b0264969d6f.tar.bz2 skyblock-stats-3340d4f82081351606f2ecb4c4442b0264969d6f.zip |
remove _donators.json from gitignore
fixes deployment
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 |