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/docs/with-redux.md
+33
Original file line number
Diff line number
Diff line change
@@ -107,3 +107,36 @@ signalStore(
107
107
})
108
108
);
109
109
```
110
+
111
+
### Configuring the Redux Devtools Extension
112
+
113
+
The `provideDevtoolsConfig` function allows you to configure the Redux DevTools integration for your NgRx SignalStore. This function is essential for setting up the DevTools with custom options. The function only needs to be called once in your appConfig or AppModule.
114
+
115
+
To use `provideDevtoolsConfig`, you need to import it and call it in your providers array.
116
+
117
+
Here is an example of how to use it with the standalone api:
For more details on the available options and their usage, refer to the [Redux DevTools Extension documentation](https://github.com/reduxjs/redux-devtools).
0 commit comments