docs: update quick-start

This commit is contained in:
2025-11-15 21:52:21 +08:00
parent 22e9266ce0
commit 00dfe1db93
2 changed files with 20 additions and 1 deletions

View File

@@ -74,8 +74,19 @@ If you don't want to use Kotlin DSL entirely, you can also migrate only `setting
```kotlin
gropify {
// Enable Gropify, setting it to `false` will disable all features
// Enable Gropify, setting it to `false` will disable all features.
isEnabled = true
// Whether to enable debug mode.
//
// You can help us identify the problem by enabling this option
// to print more debugging information in the logs.
//
// - Note: THIS IS ONLY FOR DEBUGGING!
// The debug log will contain your local environment,
// which may contain sensitive information.
// Please be sure to protect this information.
debugMode = false
}
```