- Add dedicatedPage flag to integration registry (25 true, 50 false) - Delete hardcoded nextjs/react/vue/wordpress route pages (wrong metadata) - Hub page routes non-dedicated integrations to /integrations/script-tag - Add 301 redirects for 50 removed slugs → /integrations/script-tag - Migrate guide content from TSX to MDX (content/integrations/*.mdx) - Add gray-matter, next-mdx-remote, remark-gfm dependencies - Add content loader (lib/integration-content.ts) matching ciphera-website pattern - Add prebuild script for integration guide index generation - Sitemap reduced from 83 to 35 URLs with real lastmod dates - Remove seoDescription from registry (now in MDX frontmatter)
40 lines
985 B
Plaintext
40 lines
985 B
Plaintext
---
|
|
title: "Angular"
|
|
description: "Add Pulse analytics to your Angular application. Simple index.html setup for all Angular versions."
|
|
category: "framework"
|
|
brandColor: "#0F0F11"
|
|
officialUrl: "https://angular.dev"
|
|
relatedIds: ["react", "vue"]
|
|
date: "2026-03-28"
|
|
---
|
|
|
|
Add the script to your `src/index.html` — the single entry point for all Angular applications.
|
|
|
|
---
|
|
|
|
## Add the Pulse script to index.html
|
|
|
|
Place the Pulse script inside the `<head>` tag of your Angular app's `src/index.html`.
|
|
|
|
<CodeBlock filename="src/index.html">{`<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<script
|
|
defer
|
|
data-domain="your-site.com"
|
|
src="https://pulse.ciphera.net/script.js"
|
|
></script>
|
|
|
|
<title>My Angular App</title>
|
|
<base href="/">
|
|
</head>
|
|
<body>
|
|
<app-root></app-root>
|
|
</body>
|
|
</html>`}</CodeBlock>
|
|
|
|
For more details, see the [Angular docs](https://angular.dev/guide/components).
|