diff --git a/js/config.js b/js/config.js index 631c318..6120e78 100644 --- a/js/config.js +++ b/js/config.js @@ -3,7 +3,10 @@ * * Do NOT confuse with settings, which are modifiable by either the settings menu, or in the application itself. */ -const config = { - // Scroll Tick Limit (How much must scroll to reach next tick) - wheelTickSize: 50, -}; +const config = makeReadOnly( + { + // Scroll Tick Limit (How much must scroll to reach next tick) + wheelTickSize: 50, + }, + "config" +);