-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlighthouserc.js
30 lines (30 loc) · 948 Bytes
/
lighthouserc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* eslint-disable prettier/prettier */
module.exports = {
ci: {
collect: {
settings: {
chromeFlags: "--ignore-certificate-errors"
},
numberOfRuns: 3,
url: [
"https://127.0.0.1:8000/",
"https://127.0.0.1:8000/event/",
"https://127.0.0.1:8000/user-checkin/",
"https://127.0.0.1:8000/user-profile",
"https://127.0.0.1:8000/org/team",
"https://127.0.0.1:8000/event/11",
"https://127.0.0.1:8000/org/team/create-org",
"https://127.0.0.1:8000/org-info/1",
"https://127.0.0.1:8000/org/event",
"https://127.0.0.1:8000/org/event/attendee-management/1530",
"https://127.0.0.1:8000/org/event/dashboard/1530",
"https://127.0.0.1:8000/org/team/create-event"
]
},
upload: {
target: "lhci",
serverBaseUrl: "https://lit-ocean-90649.herokuapp.com/",
token: process.env.LHCI_SERVER_TOKEN
}
}
};