DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Redux Ecosystem
What is the correct way to ADD custom middleware to configureStore without losing the built-in defaults (thunk, dev checks)?
A
Pass middleware: [myMiddleware] directly, replacing the array entirely
B
Use the getDefaultMiddleware() callback form: middleware: (getDefault) => getDefault().concat(myMiddleware)
C
It's not possible to add custom middleware to configureStore
D
Manually re-list thunk plus your middleware
Check Answer