Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions app/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,14 @@
{% endif %}
{% endif %}

{% if site.ENABLE_ADOBE %}
{% if jekyll.environment == "production" %}
<script src="https://assets.adobedtm.com/8f6dec44d586/4a6d3ebc9183/launch-2b6116abbf50.min.js" async></script>
{% elsif jekyll.environment == "preview" %}
<script src="https://assets.adobedtm.com/8f6dec44d586/4a6d3ebc9183/launch-33a8f135e7f2-development.min.js" async></script>
{% endif %}
{% endif %}

{% include structured_data.html %}

{% vite_client_tag %}
Expand Down
1 change: 1 addition & 0 deletions app/_plugins/generators/environment_variables.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class EnvironmentVariablesGenerator < Generator
def generate(site)
site.config['git_branch'] = ENV['HEAD'] || 'main'
site.config['ENABLE_KAPA_AI'] = ENV['ENABLE_KAPA_AI']
site.config['ENABLE_ADOBE'] = ENV['ENABLE_ADOBE']
site.config['ENABLE_ALGOLIA'] = enable_algolia
Comment on lines 8 to 11
end

Expand Down
Loading