[Ionic v3] White screen when building with --prod

app-scripts 1.3 purges decorators by default. My app uses ngrx/store + ngrx/effects and relies on effects firing on app start, but they don’t since @Effect decorators are being purged (I guess).

Changing package.json like this makes it work again:

...
      "config": {
        "ionic_purge_decorators": false
      },
...