├── .firebaserc ├── public ├── 404.html └── index.html ├── README.md └── firebase.json /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "prod": "angulardart-org" 4 | } 5 | } -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 4 | https://webdev.dartlang.org/angular 5 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 4 | https://webdev.dartlang.org/angular 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Angulardart.org now redirects to https://webdev.dartlang.org/angular. 2 | This repository just contains the configuration for a Firebase hosting 3 | instance to redirect all traffic to the new site. 4 | 5 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "public", 4 | "redirects": [{ 5 | "source": "**", 6 | "destination": "https://webdev.dartlang.org/angular?utm_campaign=dart_migration&utm_medium=redirect&utm_source=angulardart.org", 7 | "type": 301 8 | }] 9 | } 10 | } 11 | --------------------------------------------------------------------------------