mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-05-04 10:33:47 +01:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import { ISR_BYPASS_TOKEN } from "$env/static/private"
|
|
import type { Config } from "@sveltejs/adapter-vercel"
|
|
|
|
export const config: Config = {
|
|
isr: {
|
|
expiration: 30 * 60,
|
|
bypassToken: ISR_BYPASS_TOKEN,
|
|
},
|
|
}
|