Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

targets.js 305 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  1. 'use strict';
  2. const browsers = [
  3. 'last 1 Chrome versions',
  4. 'last 1 Firefox versions',
  5. 'last 1 Safari versions'
  6. ];
  7. const isCI = !!process.env.CI;
  8. const isProduction = process.env.EMBER_ENV === 'production';
  9. if (isCI || isProduction) {
  10. browsers.push('ie 11');
  11. }
  12. module.exports = {
  13. browsers
  14. };
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...