12 lines
242 B
YAML
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
|