feat: Add vercel deployment configuration
This commit is contained in:
parent
6d903440b4
commit
b868bf8c99
|
@ -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__
|
|
@ -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