20 lines
886 B
TypeScript
20 lines
886 B
TypeScript
//this is purely for cloudflare pages redirection purposes
|
|
|
|
export async function onRequest(context: EventContext<unknown, string, unknown>) {
|
|
// Contents of context object
|
|
const {
|
|
request, // same as existing Worker API
|
|
env, // same as existing Worker API
|
|
params, // if filename includes [id] or [[path]]
|
|
waitUntil, // same as ctx.waitUntil in existing Worker API
|
|
next, // used for middleware or to fetch assets
|
|
data, // arbitrary space for passing data between middlewares
|
|
} = context
|
|
|
|
const url = new URL(request.url)
|
|
url.hostname = "app.windmill.dev"
|
|
const res = await fetch(url.toString(), { method: request.method, body: request.body, headers: request.headers, redirect: 'manual' })
|
|
res.headers.set('set-cookie', res.headers.get('set-cookie')?.replace('Domain=windmill.dev;', '') ?? '')
|
|
return res
|
|
}
|