Friday, December 27, 2019

No store found. Make sure you follow the instructions.

When you see this error in the Redux DevTools for Google Chrome (which appear as a new tab in the Google Chrome Developer Tools that you see when you press F12 at Google Chrome) you get around that by putting this as an import at your outermost God module of your Angular 8 application:

StoreDevtoolsModule.instrument()

 
 

Put this up top in the .ts file to get it to work:

import { StoreDevtoolsModule } from '@ngrx/store-devtools';

 
 

In order to get that to work you must specifically install something.

npm install @ngrx/store-devtools

No comments:

Post a Comment