Initial commit of dashboard

This commit is contained in:
Oracle 2026-06-14 18:13:56 +02:00
parent 59d24aa206
commit adc39db441
Signed by: Oracle
SSH key fingerprint: SHA256:x4/RtnjUyuHkdvmwNDsWSfcfF1V5PNr3OpriZqOvCX8
21 changed files with 797 additions and 20 deletions

View file

@ -1,5 +1,10 @@
// @ts-check
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
vite: {
define: {
'import.meta.env.ACCESS_TOKEN': JSON.stringify(process.env.ACCESS_TOKEN || ''),
},
},
});