crabfit/crabfit-frontend/app.yaml
2021-02-26 13:19:13 +11:00

12 lines
242 B
YAML

runtime: nodejs12
handlers:
# Serve all static files with url ending with a file extension
- url: /(.*\..+)$
static_files: \1
upload: (.*\..+)$
# Catch all handler to index.html
- url: /.*
static_files: index.html
upload: index.html