-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
38 lines (30 loc) · 988 Bytes
/
app.yaml
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
36
37
38
runtime: nodejs18
handlers:
- url: /static
static_dir: dist/hacks-website
- url: /assets
static_dir: dist/hacks-website/assets
- url: /(.*\.js)
static_files: dist/hacks-website/\1
upload: dist/hacks-website/(.*\.js)
mime_type: application/javascript
- url: /(.*\.css)
static_files: dist/hacks-website/\1
upload: dist/hacks-website/(.*\.css)
mime_type: text/css
- url: /(.*\.(png|jpg|gif|ico))
static_files: dist/hacks-website/\1
upload: dist/hacks-website/(.*\.(png|jpg|gif|ico))
mime_type: image/png
- url: /(.*\.(ttf|woff|woff2|eot))
static_files: dist/hacks-website/\1
upload: dist/hacks-website/(.*\.(ttf|woff|woff2|eot))
mime_type: application/font-woff
- url: /(.*\.svg)
static_files: dist/hacks-website/\1
upload: dist/hacks-website/(.*\.svg)
mime_type: image/svg+xml
- url: /(.*)
static_files: dist/hacks-website/index.html
upload: dist/hacks-website/index.html
secure: always