2022-12-25 20:29:03 -06:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2022-12-25 20:39:04 -06:00
|
|
|
const config = makeReadOnly(
|
|
|
|
{
|
|
|
|
// Scroll Tick Limit (How much must scroll to reach next tick)
|
|
|
|
wheelTickSize: 50,
|
2022-12-26 19:24:26 -06:00
|
|
|
|
|
|
|
// Endpoint
|
|
|
|
api: makeReadOnly({path: "/sdapi/v1/"}),
|
2022-12-25 20:39:04 -06:00
|
|
|
},
|
|
|
|
"config"
|
|
|
|
);
|