mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
- removed the indicator circle under the send button - made send_form turn red when not connected - changed send_textarea's placeholder text when not connected - made send button hide when not connected (avoids users trying to use API and instead getting a 'character not selected' button)
10 lines
334 B
Plaintext
10 lines
334 B
Plaintext
|
|
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
|
|
|
|
module.exports = {
|
|
port, whitelist, whitelistMode, autorun
|
|
};
|