### Describe the bug In the `blog social icons` partial component, adding custom mat icons using path `icons/github.svg` in the constructor like so: ``` this.iconRegistry.addSvgIcon("github", this.sanitizer.bypassSecurityTrustResourceUrl("/icons/github.svg") ); ``` resulted in getting this error:  ### Steps to resolve to avoid it, absolute file path must be used since sources suggested that is a solution for SSR rendered sites ``` this.iconRegistry.addSvgIcon("github", this.sanitizer.bypassSecurityTrustResourceUrl(`${deployedUrl}icons/github.svg`) ); ``` ### Browsers _No response_ ### Additional context (Is this in dev or production?) _No response_ ### I would be willing to submit a PR to fix this issue - [X] Yes and I have read the [Contribution Guide](https://anguhashblog.com/contributing) and I agree to follow this project's [Code of Conduct](https://anguhashblog.com/code-of-conduct) - [ ] No