Skip to content

Instantly share code, notes, and snippets.

@koryteg
Created July 18, 2017 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koryteg/5f25b84c91b8371831376268676538e2 to your computer and use it in GitHub Desktop.
Save koryteg/5f25b84c91b8371831376268676538e2 to your computer and use it in GitHub Desktop.
adjusting eh target!
/* eslint-env node */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var ENV = {
browsers: [
'last 1 Chrome versions',
'last 1 Firefox versions'
]
};
if (EmberApp.env() === "production") {
ENV.browsers.concat([
'ie 10',
'last 1 Edge versions',
'last 1 Safari versions'
])
}
module.exports = ENV
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment