zenno: use data from api

This commit is contained in:
2026-06-05 14:31:10 -04:00
parent 871fd5fdcc
commit a848c8eb72
15 changed files with 369 additions and 322 deletions

View File

@@ -4,6 +4,7 @@ import { playwright } from '@vitest/browser-playwright';
import { sveltekit } from '@sveltejs/kit/vite';
export default defineConfig({
clearScreen: false,
plugins: [tailwindcss(), sveltekit()],
test: {
expect: { requireAssertions: true },
@@ -33,4 +34,11 @@ export default defineConfig({
},
],
},
server: {
proxy: {
'/api': {
target: 'http://localhost:13669',
},
},
},
});