From 292320519556dbce9d4523a83472bd2113006d0a Mon Sep 17 00:00:00 2001 From: CHAKKA PHANI SIMHA <92540986+c1phani1simha@users.noreply.github.com> Date: Wed, 12 Oct 2022 17:20:35 +0530 Subject: [PATCH] Added content to Angular SSG (#2323) * Added content to readme.md file in 114-angular-ssg [#1847 ](https://github.com/kamranahmedse/developer-roadmap/issues/1847) I added the required content to the readme.md file in 114-angular-ssg folder to resolve the issue. * Update content/roadmaps/104-angular/content/114-angular-ssg/readme.md Co-authored-by: Kamran Ahmed --- .../roadmaps/104-angular/content/114-angular-ssg/readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.