website refactor

This commit is contained in:
2026-01-17 18:28:10 +01:00
parent 6d57f8b1ce
commit 64d9e7fd16
44 changed files with 1729 additions and 415 deletions

View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'vitest/config';
import * as path from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/smoke/website-ssr.test.ts'],
testTimeout: 30000, // Increase timeout for network requests
},
resolve: {
alias: {
'@': path.resolve(__dirname, './apps/website'),
},
},
});