Walshy | Pages
03/10/2023, 1:52 AMkrsr
03/10/2023, 2:00 AM_routes.json
? there's only one function in the project currently so i was hoping it'd autogenerate correctlyWalshy | Pages
03/10/2023, 2:09 AMWalshy | Pages
03/10/2023, 2:09 AMkrsr
03/10/2023, 2:10 AM/functions/waitlist.ts
, which should make the route /waitlist
, right?Walshy | Pages
03/10/2023, 2:11 AMkrsr
03/10/2023, 2:11 AMkrsr
03/10/2023, 2:11 AMWalshy | Pages
03/10/2023, 2:17 AMkrsr
03/10/2023, 2:20 AMbbong
03/10/2023, 3:53 AMTypeError: Can't modify immutable headers.
but when I run it locally it works.Rémi
03/10/2023, 9:06 AMHardAtWork
03/10/2023, 9:15 AMfetch
API: https://developers.cloudflare.com/workers/runtime-apis/fetchRémi
03/10/2023, 9:19 AMstukennedy
03/10/2023, 10:52 AMtypescript
import { parseToken } from '@lib/token';
export const authentication: PagesFunction = async (context) => {
console.log('middleware', context.request.url);
if (parseToken(context.request)) {
return await context.next();
} else {
console.error('redirect');
const url = new URL(context.request.url);
return Response.redirect(url.origin, 301);
}
};
export const onRequest = [authentication];
This is a _middleware.ts
file inside my functions/dash/
folder
when I try to navigate to URL http://127.0.0.1:3000/dash/products
it logs out middleware http://127.0.0.1:3000/dash
ZøD?
03/10/2023, 12:08 PMZøD?
03/10/2023, 12:19 PM_middleware.js
function?
Edit: for future folks; answer is "yes". The onRequest
function's EventContext
has an env
property that can be used (https://developers.cloudflare.com/pages/platform/functions/api-reference/#eventcontext)dave
03/10/2023, 7:13 PM/myscript.js
instead of just /myscript
?Unsmart | Tech debt
03/10/2023, 7:13 PMmyscript.js.js
🤷James
03/10/2023, 7:14 PMdave
03/10/2023, 7:14 PMdave
03/10/2023, 7:14 PMmyscript.js.ts
lolJames
03/10/2023, 7:14 PMkrsr
03/10/2023, 7:29 PMkrsr
03/10/2023, 8:07 PMsendEmail
, it turns out. in case it helps anyone, the handler now looks like this: https://github.com/solanus-systems/solanus.systems/blob/main/functions/waitlist.tsstukennedy
03/11/2023, 12:20 AMDeleted User
03/11/2023, 2:39 AMDeleted User
03/11/2023, 2:40 AMDeleted User
03/11/2023, 2:44 AMWilliam.
03/11/2023, 7:51 PM