chore: scaffold astro frontend with static output

This commit is contained in:
devilreef 2026-04-30 09:23:32 +06:00
parent 6bec95a563
commit f1a0d1ddef
Signed by: devilreef
SSH key fingerprint: SHA256:UZisRr4iuXx+IhkbZnR655L2RWAT6o2rgbGv5F/6m3Y
8 changed files with 10277 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'happy-dom',
include: ['src/tests/**/*.test.ts', 'src/tests/**/*.test.tsx'],
globals: false,
},
});