mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-13 16:43:04 -04:00
Make ReactDevTools Opt-in
This commit is contained in:
parent
516f8c488a
commit
86eacea74d
4 changed files with 24 additions and 7 deletions
|
@ -3,9 +3,10 @@ import IpcEvents from "../utils/IpcEvents";
|
|||
import { React } from "../webpack/common";
|
||||
import { mergeDefaults } from "../utils/misc";
|
||||
|
||||
interface Settings {
|
||||
export interface Settings {
|
||||
notifyAboutUpdates: boolean;
|
||||
useQuickCss: boolean;
|
||||
enableReactDevtools: boolean;
|
||||
plugins: {
|
||||
[plugin: string]: {
|
||||
enabled: boolean;
|
||||
|
@ -17,6 +18,7 @@ interface Settings {
|
|||
const DefaultSettings: Settings = {
|
||||
notifyAboutUpdates: true,
|
||||
useQuickCss: true,
|
||||
enableReactDevtools: false,
|
||||
plugins: {}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue