omnidash/unlighthouse.config.ts

21 lines
409 B
TypeScript

import { defineConfig } from 'unlighthouse';
export default defineConfig({
site: process.env.SCAN_URL || 'http://localhost:5173/',
cookies: [
{
name: 'pb_auth',
value: process.env.AUTH_COOKIE || '',
domain: process.env.SCAN_URL || 'http://localhost:5173/',
path: '/',
sameSite: 'Lax'
}
],
ci: {
reporter: 'jsonExpanded',
buildStatic: true
},
scanner: {
robotsTxt: false
}
});