mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-06-28 12:19:11 +00:00
refactor: formatting
This commit is contained in:
parent
2b46265564
commit
0e83c8b051
5 changed files with 35 additions and 26 deletions
|
@ -1,23 +1,23 @@
|
|||
import { defineConfig } from 'unlighthouse'
|
||||
import { defineConfig } from 'unlighthouse';
|
||||
|
||||
export default defineConfig ({
|
||||
site: process.env.SITE_URL || 'http://localhost:5173/',
|
||||
scanner: {
|
||||
samples: 1,
|
||||
throttle: true,
|
||||
},
|
||||
cookies: [
|
||||
{
|
||||
name: 'pb_auth',
|
||||
value: process.env.AUTH_COOKIE || '',
|
||||
domain: 'localhost',
|
||||
path: '/',
|
||||
sameSite: 'Lax',
|
||||
}
|
||||
],
|
||||
ci: {
|
||||
reporter: 'jsonExpanded',
|
||||
buildStatic: true,
|
||||
budget: 65,
|
||||
},
|
||||
export default defineConfig({
|
||||
site: process.env.SITE_URL || 'http://localhost:5173/',
|
||||
scanner: {
|
||||
samples: 1,
|
||||
throttle: true
|
||||
},
|
||||
cookies: [
|
||||
{
|
||||
name: 'pb_auth',
|
||||
value: process.env.AUTH_COOKIE || '',
|
||||
domain: 'localhost',
|
||||
path: '/',
|
||||
sameSite: 'Lax'
|
||||
}
|
||||
],
|
||||
ci: {
|
||||
reporter: 'jsonExpanded',
|
||||
buildStatic: true,
|
||||
budget: 65
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue