Initial commit: Rapport Website (Hugo + Hextra)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-26 11:52:03 +02:00
commit e007bdd4e7
480 changed files with 41697 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { defineConfig } from "@playwright/test";
const baseURL = process.env.BASE_URL || "http://localhost:1313";
export default defineConfig({
testDir: "./tests",
timeout: 60_000,
retries: 0,
reporter: [["list"], ["html"]],
use: {
baseURL,
},
webServer: process.env.BASE_URL
? undefined
: {
command: "npx serve docs/public -l tcp://localhost:1313 --no-clipboard",
url: baseURL,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
});