Skip to content

Commit 5777574

Browse files
committed
Quick fix for pages not being able to render
1 parent 3b7ea4a commit 5777574

File tree

7 files changed

+8
-3
lines changed

7 files changed

+8
-3
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ PUBLIC_CFP_END=2025-04-30T23:59:59
22
PUBLIC_TICKET_SALES_START=2025-05-05T08:00:00
33
PUBLIC_EVENT_START=2025-09-18T08:00
44
PUBLIC_EVENT_END=2025-09-18T23:00
5-
PUBLIC_SESSIONIZE_CLIENT_ID=du0o6y5t
5+
PUBLIC_SESSIONIZE_CLIENT_ID=du0o6y5t # 2025
66
PUBLIC_SESSIONIZE_EVENT_ID=swiss-cloud-native-day-2025
77
PUBLIC_TITO_EVENT_ID=swiss-cloud-native-day-2025

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
PUBLIC_TICKET_SALES_START: 2025-05-05T08:00:00
1212
PUBLIC_EVENT_START: 2025-09-18T08:00
1313
PUBLIC_EVENT_END: 2025-09-18T23:00
14-
PUBLIC_SESSIONIZE_CLIENT_ID: du0o6y5t
14+
PUBLIC_SESSIONIZE_CLIENT_ID: du0o6y5t # 2025
1515
PUBLIC_SESSIONIZE_EVENT_ID: swiss-cloud-native-day-2025
1616
PUBLIC_TITO_EVENT_ID: swiss-cloud-native-day-2025
1717

.ignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
static/archive

src/routes/sessions/[id]/+page.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ export const load: PageLoad = async ({ fetch, params }) => {
66
session: await api.getSession(fetch, params.id)
77
};
88
};
9+
10+
export const prerender = false;

src/routes/speakers/[id]/+page.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ export const load: PageLoad = async ({ fetch, params }) => {
66
speaker: await api.getSpeaker(fetch, params.id)
77
};
88
};
9+
10+
export const prerender = false;

static/.nojekyll

Whitespace-only changes.

svelte.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const config = {
1010

1111
kit: {
1212
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
13-
adapter: adapter()
13+
adapter: adapter({ strict: false })
1414
}
1515
};
1616
export default config;

0 commit comments

Comments
 (0)