refactor: formatting

This commit is contained in:
Bart van der Braak 2024-02-19 11:11:31 +01:00
parent 2b46265564
commit 0e83c8b051
5 changed files with 35 additions and 26 deletions

View file

@ -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
}
});