Hi all, I'm trying the possibility to deploy a full stack Astro application with Pages+Functions+Sup
Hi all, I'm trying the possibility to deploy a full stack Astro application with Pages+Functions+Supabase Auth. I created a folder <rootproject>/functions/auth/ containing signin.ts, signup.ts. In the documentation for local development, I can run
npx wrangler pages dev <DIRECTORY-OF-ASSETS>. Can someone explain what is this directory of assets? Is it the dist folder created after running the command astro build? I tried npx wrangler pages dev dist. The web app can be opened in the local browser, but trying the signup button returns POST http://localhost:8788/auth/signup 405 (Method Not Allowed)

