PAKDProject / elance-frontend

GNU General Public License v3.0
0 stars 0 forks source link

Remove Redux Tools before upload #75

Closed alanj1998 closed 5 years ago

alanj1998 commented 5 years ago

Make sure to remove this line before uploading to s3!


"app-redux.module.ts"

@NgModule({
    imports: [
        NgxsModule.forRoot([
            UserState,
            JobsState,
            OrgsState
        ]),
        NgxsReduxDevtoolsPluginModule.forRoot() <-- Remove this line here
    ],
    exports: [NgxsModule, NgxsReduxDevtoolsPluginModule] <-- Remove the export as well plz
})
export class AppReduxModule { }