├── README.md └── firebase.json /README.md: -------------------------------------------------------------------------------- 1 | # ARCHIVED REPOSITORY 2 | 3 | Formerly the website repo for [AngularDart](https://github.com/angulardart), this repo has been archived. 4 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "redirects": [ 4 | { 5 | "source": "**", 6 | "destination": "https://github.com/angulardart", 7 | "type": 301 8 | } 9 | ], 10 | "ignore": [ 11 | "firebase.json" 12 | ] 13 | } 14 | } --------------------------------------------------------------------------------