Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,30 @@ module.exports = {
versions: VERSIONS_JSON,
},
],
function (context, options) {
return {
name: 'beamer',
injectHtmlTags({content}) {
// Only inject Beamer when deployed to production, so we don't use up Beamer "users"
if (process.env.NODE_ENV === "production") {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I did this correctly. When i run locally (ie localhost:3000), I don't see Beamer installed as expected. But I do see it on this PR preview 👍

return {
// For performance, Beamer recommends injecting these scripts at the very bottom of the <body>
// Thus, custom plugin is required here to use postBodyTags
postBodyTags: [
`<script>var beamer_config = { product_id : 'mUvQtqly31065' };</script>`,
{
tagName: 'script',
attributes: {
src: 'https://app.getbeamer.com/js/beamer-embed.js',
defer: 'defer',
}
}
]
};
}
}
};
},
],
customFields: {},
themes: [],
Expand Down