AUXteam commited on
Commit
5db232d
·
verified ·
1 Parent(s): e43959f

Upload serve.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. serve.json +37 -0
serve.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "headers": [
3
+ {
4
+ "source": "**/*",
5
+ "headers": [
6
+ {
7
+ "key": "Cross-Origin-Opener-Policy",
8
+ "value": "same-origin"
9
+ },
10
+ {
11
+ "key": "Cross-Origin-Embedder-Policy",
12
+ "value": "require-corp"
13
+ },
14
+ {
15
+ "key": "X-Frame-Options",
16
+ "value": "SAMEORIGIN"
17
+ },
18
+ {
19
+ "key": "X-Content-Type-Options",
20
+ "value": "nosniff"
21
+ }
22
+ ]
23
+ }
24
+ ],
25
+ "rewrites": [
26
+ {
27
+ "source": "/{lang}/**",
28
+ "destination": "/{lang}/index.html"
29
+ },
30
+ {
31
+ "source": "**",
32
+ "destination": "/index.html"
33
+ }
34
+ ],
35
+ "cleanUrls": true,
36
+ "trailingSlash": false
37
+ }