diff --git a/config.conf b/config.conf index 25d278e14..e1882fbff 100644 --- a/config.conf +++ b/config.conf @@ -3,7 +3,8 @@ const port = 8000; const whitelist = ['127.0.0.1']; //Example for add several IP in whitelist: ['127.0.0.1', '192.168.0.10'] const whitelistMode = false; //Disabling enabling the ip whitelist mode. true/false const autorun = true; //Autorun in the browser. true/false +const enableExtensions = true; //Enables support for TavernAI-extras project module.exports = { - port, whitelist, whitelistMode, autorun + port, whitelist, whitelistMode, autorun, enableExtensions, }; diff --git a/public/index.html b/public/index.html index 7f6368cee..8fe7e122f 100644 --- a/public/index.html +++ b/public/index.html @@ -33,7 +33,9 @@