mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-19 22:09:27 +02:00
feat: Add vercel deployment configuration
This commit is contained in:
parent
6d903440b4
commit
b868bf8c99
26
.vercelignore
Normal file
26
.vercelignore
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Git related
|
||||||
|
.git
|
||||||
|
.github
|
||||||
|
.gitmodules
|
||||||
|
.gitattributes
|
||||||
|
.gitignore
|
||||||
|
|
||||||
|
# Development configs
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
.dependency-cruiser.cjs
|
||||||
|
|
||||||
|
# Environment and secrets
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
|
||||||
|
# Documentation and logs
|
||||||
|
docs
|
||||||
|
*.md
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Test files
|
||||||
|
coverage
|
||||||
|
test
|
||||||
|
**/*.test.*
|
||||||
|
**/__tests__
|
13
vercel.json
Normal file
13
vercel.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"buildCommand": "npm run build",
|
||||||
|
"outputDirectory": "dist",
|
||||||
|
"installCommand": "npm config set ignore-scripts true && npm ci && npm rebuild",
|
||||||
|
"routes": [
|
||||||
|
{ "handle": "filesystem" },
|
||||||
|
{ "src": "/.*", "dest": "/index.html" }
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"SKIP_POSTINSTALL": "1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user