-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathfirebase.json
89 lines (89 loc) · 2.42 KB
/
firebase.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"hosting": {
"public": "_site",
"cleanUrls": true,
"trailingSlash": true,
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/feed",
"destination": "https://vuejs.de/feed.xml",
"type": 301
},
{
"source": "/presskit",
"destination": "https://drive.google.com/drive/u/0/folders/1GDE1i4Opve487fz9ZKMmq1BvcXiJGuv4",
"type": 301
},
{
"source": "/newsletter/redirect/footer*",
"destination": "https://workshops.us5.list-manage.com/subscribe?u=465db430c1cb88ec6dea2ca40&id=2bee334983&group[21477][1]=1&group[26094][256]=1",
"type": 301
},
{
"source": "/newsletter/redirect/article*",
"destination": "https://workshops.us5.list-manage.com/subscribe?u=465db430c1cb88ec6dea2ca40&id=2bee334983&group[21477][32768]=1&group[26094][256]=1",
"type": 301
},
{
"source": "/newsletter/redirect*",
"destination": "https://workshops.us5.list-manage.com/subscribe?u=465db430c1cb88ec6dea2ca40&id=2bee334983&group[26094][256]=1",
"type": 301
},
{
"source": "/slack*",
"destination": "https://workshops.de/join-discord",
"type": 301
},
{
"source": "/discord*",
"destination": "https://workshops.de/join-discord",
"type": 301
},
{
"source": "/chat*",
"destination": "https://angular.de/discord",
"type": 301
},
{
"source": "/artikel/vuejs-tutorial-deutsch/",
"destination": "https://vuejs.de/artikel/vuejs-tutorial-deutsch-anfaenger/",
"type": 301
},
{
"source": "/schulungen/vuejs/",
"destination": "https://vuejs.de/schulungen/vuejs-typescript/",
"type": 301
},
{
"source": "/artikel/unsere-remote-vuejs-schulungen/",
"destination": "https://vuejs.de/schulungen/vuejs-typescript/",
"type": 301
}
],
"headers": [
{
"source": "**/*.@(jpg|jpeg|gif|png|svg|css)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=604800"
}
]
},
{
"source": "/assets/mirror/**",
"headers": [
{
"key": "X-Robots-Tag",
"value": "noindex, follow"
}
]
}
]
}
}