Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 5 additions & 18 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,19 @@
# Add 'frontend' label to any changes in src
frontend:
- changed-files:
- any-glob-to-any-file: 'src/**/*'
- any: ['src/**/*']

# Add 'tests' label to any changes in tests
tests:
- changed-files:
- any-glob-to-any-file: 'tests/**/*'
- any: ['tests/**/*']

# Add 'ci' label to any changes in .github/workflows
ci:
- changed-files:
- any-glob-to-any-file: '.github/workflows/**/*'
- any: ['.github/workflows/**/*']

# Add 'docker' label to any changes in Dockerfile or docker-compose
docker:
- changed-files:
- any-glob-to-any-file:
- 'Dockerfile'
- 'docker-compose.yml'
- 'nginx.conf'
- any: ['Dockerfile', 'docker-compose.yml', 'nginx.conf']

# Add 'docs' label to any changes in README, CONTRIBUTING, etc.
docs:
- changed-files:
- any-glob-to-any-file:
- 'README.md'
- 'CONTRIBUTING.md'
- 'CODE_OF_CONDUCT.md'
- 'SECURITY.md'
- 'LICENSE'
- any: ['README.md', 'CONTRIBUTING.md', 'CODE_OF_CONDUCT.md', 'SECURITY.md', 'LICENSE']
10 changes: 8 additions & 2 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"version": 2,
"outputDirectory": "dist",
"cleanUrls": true,
"rewrites": [
{
"source": "/assets/(.*)",
"destination": "/assets/$1"
},
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"cleanUrls": true
]
}
Loading