diff --git a/src/pages/snippets/source-map.mdx b/src/pages/snippets/source-map.mdx
index 6ff7b39..2401eb9 100644
--- a/src/pages/snippets/source-map.mdx
+++ b/src/pages/snippets/source-map.mdx
@@ -1,18 +1,20 @@
---
title: Make source maps available for reporting tools
description: "Make source maps available for reporting tools"
+tags: [json, sourceMaps]
pubDate: Feb 20, 2022
contributedBy: "@SantoshYadavDev"
---
-import BlogImage from "@components/BlogImage.astro"
-import SourceMap from "@images/source-map.jpg"
-Do you want to upload source-map to an reporting tool like
+import BlogImage from "@components/BlogImage.astro";
+import SourceMap from "@images/source-map.jpg";
+
+Do you want to upload source-map to an reporting tool like
@datadoghq
, but want to make sure no one can debug the code due to sourceMap
-
---
+
Set below property in build options, the source-map will not be mapped to the bundle, but you will get a source map.
```json
@@ -21,5 +23,4 @@ Set below property in build options, the source-map will not be mapped to the bu
}
```
-
diff --git a/src/pages/snippets/v15-standalone.mdx b/src/pages/snippets/v15-standalone.mdx
index d4a80d2..875ce3a 100644
--- a/src/pages/snippets/v15-standalone.mdx
+++ b/src/pages/snippets/v15-standalone.mdx
@@ -1,6 +1,7 @@
---
title: Angular 15 Standalone Components
description: "Easy example of Angular 15 standalone components in existing projects"
+tags: ["angular15", "standalone components"] # comma separated list which gets trimmed
pubDate: Feb 22, 2022
contributedBy: "@olierxleben"
---
@@ -9,22 +10,25 @@ Here is a quick example of how to use a standalone component in an existing NgMo
Let`s start with the component itself.
```typescript
-import {Component} from '@angular/core';
+import { Component } from "@angular/core";
@Component({
- selector: 'fancy-button',
+ selector: "fancy-button",
standalone: true, // magic lies here
template: `
-