You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/SETTINGS.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@
5
5
ComfyUI frontend uses a comprehensive settings system for user preferences with support for dynamic defaults, version-based rollouts, and environment-aware configuration.
6
6
7
7
### Settings Architecture
8
-
- Settings are defined as `SettingParams` in `src/constants/coreSettings.ts`
8
+
- Settings are defined as `SettingParams` in `src/platform/settings/constants/coreSettings.ts`
9
9
- Registered at app startup, loaded/saved via `useSettingStore` (Pinia)
10
10
- Persisted per user via backend `/settings` endpoint
11
11
- If a value hasn't been set by the user, the store returns the computed default
12
12
13
13
```typescript
14
-
// From src/stores/settingStore.ts:105-122
14
+
// From src/platform/settings/settingStore.ts:105-122
0 commit comments