diff --git a/content/roadmaps/104-angular/content/114-angular-ssg/readme.md b/content/roadmaps/104-angular/content/114-angular-ssg/readme.md index c99e199dc..314a6863c 100644 --- a/content/roadmaps/104-angular/content/114-angular-ssg/readme.md +++ b/content/roadmaps/104-angular/content/114-angular-ssg/readme.md @@ -1 +1,3 @@ -# Angular ssg \ No newline at end of file +# Angular SSG + +SSG (Static Site Generator), helps in building the HTML full website, during the process of building and serving that HTML Page. This method helps to generate the HTML website on the client side before its being served on the server side. Therefore, whenever a user requests a HTML Page, firstly HTML page will be rendered and secondly, the angular app will be rendered. The SSG can be used only if your website is static (or) it's content doesn't changes frequently.