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 798e23c commit 79835e6Copy full SHA for 79835e6
.gitignore
@@ -34,3 +34,4 @@ bun.lockb
34
test.js
35
.vscode
36
bun.lockb
37
+.netlify/
netlify.toml
@@ -0,0 +1,26 @@
1
+[build]
2
+ command = "npm install"
3
+ functions = "netlify/functions"
4
+ publish = "."
5
+ environment = { NODE_VERSION = "22" }
6
+
7
+[functions]
8
+ node_bundler = "zisi"
9
+ directory = "netlify/functions"
10
11
+[[redirects]]
12
+ from = "/api/*"
13
+ to = "/.netlify/functions/api/:splat"
14
+ status = 200
15
16
17
+ from = "/*"
18
+ to = "/.netlify/functions/api"
19
20
21
+[dev]
22
+ command = "npm run dev"
23
+ port = 8888
24
+ targetPort = 5000
25
+ framework = "#custom"
26
0 commit comments