openOutpaint/js/config.js

16 lines
380 B
JavaScript
Raw Normal View History

/**
* This is a file for static unchanging global configurations.
*
* Do NOT confuse with settings, which are modifiable by either the settings menu, or in the application itself.
*/
const config = makeReadOnly(
{
// Scroll Tick Limit (How much must scroll to reach next tick)
wheelTickSize: 50,
// Endpoint
api: makeReadOnly({path: "/sdapi/v1/"}),
},
"config"
);