February 9, 2018

Angular CLI: Add Sitemap.xml and Robots.txt File

As a developer you may get the task adding a Sitemap and a robot.txt to your Angular project. This is quite easy if it is being built with Angular CLI.

Copy the files next to the favicon.ico  into the /src  folder of your Angular project.

 

Now open up the angular.json file in the projects root folder with an editor and add the two files inside the assets section, as follows:

If you have jq installed on your system you can achieve the same by executing the following one-liner without using an editor:

Restart your Angular build and the files should be served directly from the root path.

If you still use version 1.x of the  @angular/cli then change  .angular-cli.json instead of angular.json accordingly:

 

Another not very known feature of the CLI version 6.x is to relocate those assets. So alternatively you can leave your files beneath the /src/assets folder and relocate them using the following configuration:

But keep in mind that these two files may be duplicated using this setting. Both files will be then  available in the root and in the assets folder.

Related Posts

Admin Admin
Developer at thecodecampus </>


10 responses to “Angular CLI: Add Sitemap.xml and Robots.txt File”

  1. Alik says:

    thank you

  2. Libellula says:

    If I want to read a file.txt in angular cli project. How can I do? I’ve tried with FileReader. But FileReader open any file from Local. It doesn’t open a file .txt stored in assets. And how can I bind in a template a file.txt stored in assets?

  3. Mikiyas Belachew says:

    How do you generate the sitemap.xml in the first place. I can not find it in the folder where the favicon.ico is located.

  4. Can Kattwinkel says:

    Hello Mikiyas,

    usually in an Angular CLI project the favicon is located under project-folder/src/favicon.ico.
    You have to create the file yourself.

  5. Alex Schultz says:

    Thank you so much! This worked for me on my Angular 7 application.

  6. Edward says:

    Thank you

  7. Amit says:

    Thanks allot !

  8. Epoxy Lantai says:

    The sitemap plugin can make it easy to promote my site’s pages or content for search engines. A sitemap is very useful for my blog SEO because a site sitemap can provide the url of the content on my blog to be more easily reached by search engines so that it can be indexed faster.

  9. The sitemap plugin can make it easy to promote my site’s pages or content for search engines. A sitemap is very useful for my blog SEO because a site sitemap can provide the url of the content on my blog to be more easily reached by search engines so that it can be indexed faster.

Leave a Reply

Add code to your comment in Markdown syntax.
Like this:
`inline example`

```
code block
example
```

Your email address will not be published.