import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "./tests/e2e", fullyParallel: true, reporter: "list", use: { baseURL: process.env.APP_URL || "http://localhost:3000", trace: "on-first-retry", }, });