We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 539cd53 commit c333684Copy full SHA for c333684
src/js/chatbot.js
@@ -2,6 +2,14 @@
2
(function() {
3
if (typeof window === 'undefined') return;
4
5
+ // TEMPORARY DISABLE FLAG - Set to false to disable chatbot
6
+ const CHATBOT_ENABLED = false;
7
+
8
+ if (!CHATBOT_ENABLED) {
9
+ console.log('Chatbot is temporarily disabled');
10
+ return;
11
+ }
12
13
// Set configuration
14
window.difyChatbotConfig = {
15
token: 'bYIppJMzMieMPDHm'
0 commit comments