import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './test', testMatch: '**/*.spec.js', use: { baseURL: 'http://localhost:8082', }, webServer: { command: 'npx vite --port 8082', url: 'http://localhost:8082', timeout: 120000, reuseExistingServer: !process.env.CI, }, });