forked from workshops-de/angular.de
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
128 lines (128 loc) · 3.26 KB
/
firebase.json
File metadata and controls
128 lines (128 loc) · 3.26 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"hosting": {
"public": "_site",
"cleanUrls": true,
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/feed",
"destination": "https://angular.de/feed.xml",
"type": 301
},
{
"source": "/slack*",
"destination": "https://workshops.de/slack",
"type": 301
},
{
"source": "/chat*",
"destination": "https://angular.de/slack",
"type": 301
},
{
"source": "/schulungen/angular-advanced/",
"destination": "https://angular.de/schulungen/angular-enterprise-applications/",
"type": 301
},
{
"source": "/workshops/",
"destination": "https://angular.de/schulungen/",
"type": 301
},
{
"source": "/workshops/*",
"destination": "https://angular.de/schulungen/",
"type": 301
},
{
"source": "/inhouse-workshop-anfrage",
"destination": "https://angular.de/inhouse-workshop/",
"type": 301
},
{
"source": "/veranstaltungen*",
"destination": "https://angular.de/schulungen/",
"type": 301
},
{
"source": "/entwickler*",
"destination": "https://angular.de/",
"type": 301
},
{
"source": "/consulting*",
"destination": "https://angular.de/",
"type": 301
},
{
"source": "/projekte*",
"destination": "https://angular.de/",
"type": 301
},
{
"source": "/classroom/:room_id*",
"destination": "https://workshops.de/classroom/:room_id*",
"type": 301
},
{
"source": "/buch/:id*",
"destination": "https://angular.de/buecher/angularjs-buch/:id*",
"type": 301
},
{
"source": "/blog/:id*",
"destination": "https://angular.de/artikel/:id",
"type": 301
},
{
"source": "/artikel/angular2-bootstrap-scss-angular-cli*",
"destination": "https://angular.de/artikel/angular-bootstrap-scss-angular-cli/",
"type": 301
},
{
"source": "/artikel/angular2-tutorial-deutsch*",
"destination": "https://angular.de/artikel/angular-tutorial-deutsch/",
"type": 301
},
{
"source": "/artikel/ngupgrade-migration-angularjs-angular2*",
"destination": "https://angular.de/artikel/ngupgrade-migration-angularjs-angular/",
"type": 301
},
{
"source": "/artikel/angular2-routing-tutorial-deutsch*",
"destination": "https://angular.de/artikel/angular-routing-tutorial-deutsch/",
"type": 301
},
{
"source": "/artikel/way-into-tech",
"destination": "https://angular.de/artikel/david-muellerchen-my-way-into-tech/",
"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"
}
]
}
]
}
}