Compare commits

..

2 Commits

Author SHA1 Message Date
Aryanta Putra a2f683960b chore: prepare vercel deployment 2026-06-13 14:02:36 +07:00
Aryanta Putra 6a986072c6 chore: update vite version 2026-06-12 13:46:00 +07:00
4 changed files with 35 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
from backend.app import app
app = app
+5 -5
View File
@@ -25,7 +25,7 @@
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"vite": "^8.0.12"
"vite": "^8.0.14"
}
},
"node_modules/@babel/code-frame": {
@@ -556,14 +556,14 @@
}
},
"node_modules/@napi-rs/wasm-runtime": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
"integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
"integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
"@tybys/wasm-util": "^0.10.1"
"@tybys/wasm-util": "^0.10.2"
},
"funding": {
"type": "github",
+1 -1
View File
@@ -29,6 +29,6 @@
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"vite": "^8.0.12"
"vite": "^8.0.14"
}
}
+26
View File
@@ -0,0 +1,26 @@
{
"version": 2,
"builds": [
{
"src": "api/index.py",
"use": "@vercel/python"
},
{
"src": "package.json",
"use": "@vercel/static-build"
}
],
"routes": [
{
"src": "/api/(.*)",
"dest": "/api/index.py"
},
{
"handle": "filesystem"
},
{
"src": "/(.*)",
"dest": "/index.html"
}
]
}