Browse Source

Feature/add robots.txt (#215)

* Add robots.txt

* Update changelog
pull/216/head
Thomas 3 years ago
committed by GitHub
parent
commit
39a76f7f40
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 5
      angular.json
  3. 4
      apps/client/src/assets/robots.txt

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added the import functionality for transactions - Added the import functionality for transactions
- Added the `robots.txt` file
### Changed ### Changed

5
angular.json

@ -103,6 +103,11 @@
"input": "", "input": "",
"output": "./" "output": "./"
}, },
{
"glob": "robots.txt",
"input": "apps/client/src/assets",
"output": "./"
},
{ {
"glob": "sitemap.xml", "glob": "sitemap.xml",
"input": "apps/client/src/assets", "input": "apps/client/src/assets",

4
apps/client/src/assets/robots.txt

@ -0,0 +1,4 @@
User-agent: *
Allow: /
Sitemap: https://ghostfol.io/sitemap.xml
Loading…
Cancel
Save