mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-26 15:01:20 +00:00
21 lines
409 B
TypeScript
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
|
|
}
|
|
});
|