-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.yml
35 lines (30 loc) · 996 Bytes
/
app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
runtime: nodejs20
handlers:
- url: /manifest\.json$
static_files: dist/client/manifest.json
secure: always
upload: dist/client/manifest.json
http_headers:
X-Frame-Options: deny
- url: /ssr-manifest\.json$
static_files: dist/client/ssr-manifest.json
secure: always
upload: dist/client/ssr-manifest.json
http_headers:
X-Frame-Options: deny
- url: /assets/(.*\.(gltf|gif|png|svg|ttf|jpeg|jpg|css|css.map|js|jsx|ts|tsx|pdf|scss|ico|json|json.map|txt|xml))$
static_files: dist/client/assets/\1
secure: always
upload: dist/client/assets/(.*)
http_headers:
X-Frame-Options: deny
- url: /reports/(.*\.(gltf|gif|png|svg|ttf|jpeg|jpg|css|css.map|js|jsx|ts|tsx|pdf|scss|ico|json|json.map|txt|xml))$
static_files: dist/client/reports/\1
secure: always
upload: dist/client/reports/(.*)
http_headers:
X-Frame-Options: deny
- url: /.*
secure: always
redirect_http_response_code: 301
script: auto