We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6532887 commit cf1c8b2Copy full SHA for cf1c8b2
docs/conf.py
@@ -87,8 +87,9 @@
87
# Building on a local Read the Docs instance
88
hoverxref_api_host = 'http://community.dev.readthedocs.io'
89
90
-# TODO: remove me when EmbedAPIv3 gets deployed in production
91
-hoverxref_api_host = 'https://readthedocs.ngrok.io'
+if os.environ.get('NGROK_READTHEDOCS') == 'True':
+ # Building on a local Read the Docs instance using NGROK for HTTPS
92
+ hoverxref_api_host = 'https://readthedocs.ngrok.io'
93
94
hoverxref_tooltip_maxwidth = 650
95
hoverxref_auto_ref = True
0 commit comments