Back to Integrations
Ember.js Integration
Add the Pulse script to your app/index.html.
Add the Pulse script to index.html
Ember uses app/index.html as its entry point. Add the script inside the <head> tag.
app/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 Ember App</title>
{{content-for "head"}}
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/app.css">
</head>
<body>
{{content-for "body"}}
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/app.js"></script>
</body>
</html>For more details, see the Ember docs.