Files
SillyTavern/config.conf
RossAsscends 4ea7b22f4b added ability to save to iOS homescreen
added fullscreen capability for iOS (no more address bar in the way)
2023-03-15 07:05:44 +09:00

11 lines
444 B
Plaintext

const port = 8000;
const whitelist = ['127.0.0.1','192.168.0.*']; //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, enableExtensions,
};