test(waas-engine): add vitest suite and node ssr container adapter setup

This commit is contained in:
Daniel S
2026-08-08 18:56:36 +02:00
parent 8197308cef
commit aa4629752a
5 changed files with 1474 additions and 15 deletions

View File

@@ -1,11 +1,13 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import react from '@astrojs/react';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone'
}),
integrations: [tailwind(), react()]
});