-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlostpixel.config.ts
41 lines (37 loc) · 1.8 KB
/
lostpixel.config.ts
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
31
32
33
34
35
36
37
38
39
40
41
import type { CustomProjectConfig } from "lost-pixel"
export const config: CustomProjectConfig = {
pageShots: {
pages: [
{ path: "/", name: "homepage" },
{ path: "/watch", name: "watch" },
{ path: "/partecipate/events", name: "partecipate-events" },
{ path: "/partecipate/projects", name: "partecipate-projects" },
{ path: "/partecipate/local-communities", name: "partecipate-local-communities" },
{ path: "/contribute/as-individual", name: "contribute--as-individual" },
{ path: "/contribute/as-speaker", name: "contribute--as-speaker" },
{ path: "/contribute/as-partner", name: "contribute--as-partner" },
{ path: "/contribute/as-sponsor", name: "contribute--as-sponsor" },
{ path: "/association/about-us", name: "association--about-us" },
{ path: "/association/join", name: "association--join" },
{ path: "/association/press-kit", name: "association--press-kit" },
{
path: "/watch/costa-tsaousis-netdata-open-source-distributed-observability-pipeline-journey-and-challenges",
name: "watch--netdata-open-source",
},
{ path: "/speaker/costa-tsaousis", name: "speaker--costa-tsaousis" },
{ path: "/partecipate/events/open-source-day-2024", name: "partecipate--events--open-source-day-2024" },
{
path: "/partecipate/events/sh-session-dev-devrel-nel-2024",
name: "partecipate--events--sh-session-dev-devrel-nel-2024",
},
],
// IP should be localhost when running locally & 172.17.0.1 when running in GitHub action
baseUrl: "http://10.45.3.180:3000",
breakpoints: [375, 414, 768, 1024, 1280, 1440, 1920, 2560],
},
// OSS mode
generateOnly: false,
failOnDifference: true,
// lostPixelProjectId: "cm4xebtf70p3a49r7n8buzwah",
// apiKey: process.env.LOST_PIXEL_API_KEY,
}