16 lines
361 B
YAML
16 lines
361 B
YAML
runtime: nodejs16
|
|
handlers:
|
|
# Serve all static files with url ending with a file extension
|
|
- url: /(.*\..+)$
|
|
static_files: dist/\1
|
|
upload: (.*\..+)$
|
|
secure: always
|
|
redirect_http_response_code: 301
|
|
|
|
# Catch all handler to index.html
|
|
- url: /.*
|
|
static_files: dist/index.html
|
|
upload: dist/index.html
|
|
secure: always
|
|
redirect_http_response_code: 301
|