We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2058b7a commit 9c892aeCopy full SHA for 9c892ae
.gitignore
@@ -13,6 +13,9 @@ pids
13
*.seed
14
*.pid.lock
15
16
+# Wrangler
17
+.wrangler
18
+
19
# Astro build time artifacts
20
.astro
21
public/functions/api/hello-world.js
@@ -0,0 +1,5 @@
1
+// functions/api/hello-world.js
2
3
+export async function onRequest(context) {
4
+ return new Response("Hello, world!");
5
+ }
0 commit comments