Skip to content

Commit c224d2e

Browse files
committed
Update example config values
1 parent c72f451 commit c224d2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ TurboBoost Commands can be configured via Rails initializer.
180180
# config/initializers/turbo_boost_commands.rb
181181
TurboBoost::Commands.config.tap do |config|
182182
# opt-[in/out] of alerting on abort (true, *false, "development", "test", "production")
183-
config.alert_on_abort = false
183+
config.alert_on_abort = "development"
184184

185185
# opt-[in/out] of alerting on error (true, *false, "development", "test", "production")
186-
config.alert_on_error = false
186+
config.alert_on_error = "development"
187187

188188
# opt-[in/out] of precompiling TurboBoost assets (*true, false)
189189
config.precompile_assets = true
@@ -195,7 +195,7 @@ TurboBoost::Commands.config.tap do |config|
195195
config.raise_on_invalid_command = "development"
196196

197197
# opt-[in/out] of state resolution (true, *false)
198-
config.resolve_state = false
198+
config.resolve_state = true
199199
end
200200
```
201201

0 commit comments

Comments
 (0)