Skip to content

Integrate Beamer release notes tool #3468

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 29, 2024
Merged
Changes from all 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 @@ -367,6 +367,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') {
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