not-tonight/vite.config.ts
type-two 595371f684 Phase 1 review: merge door/floor/juice, fold CCRs into contracts, integration fixes
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-19 19:26:35 +10:00

12 lines
257 B
TypeScript

/// <reference types="vitest/config" />
import { defineConfig } from 'vite';
export default defineConfig({
base: './',
server: { port: Number(process.env.PORT) || 5199 },
test: {
include: ['tests/**/*.test.ts'],
environment: 'node',
},
});