Tips for improving build time of large apps

Instead of

const environment = process.env.EMBER_ENV;

I would use EmberApp.env(), e.g.:

const environment = EmberApp.env();
3 Likes