chore: optimize assets

This commit is contained in:
Torsten Dittmann
2024-08-21 14:42:44 +02:00
parent 579952af4f
commit 980c9efb88
971 changed files with 471 additions and 5 deletions

12
scripts/build.js Normal file
View File

@@ -0,0 +1,12 @@
import { fileURLToPath } from 'url';
import { build } from 'vite';
import { downloadContributors } from './download-contributor-data.js';
const __dirname = fileURLToPath(new URL('.', import.meta.url));
async function main() {
await downloadContributors();
await build();
}
main();