Setup
Debugger setup
StoreModule.provideStore(initialState, false, {
debugger: {
enableInitialDebugging: true,
options: ...
}
})History options
StoreModule.provideStore(initialState, false, {
history: {
collectHistory: true,
storeHistoryItems: 10
}
})Last updated