index.js 244 B

12345678910111213
  1. /**
  2. * Passes the proper config object to the application
  3. */
  4. let config = {};
  5. try {
  6. config = require(`./config.${process.env.NODE_ENV}.js`);
  7. } catch(e) {
  8. console.log('No config for this environment exists.');
  9. }
  10. module.exports = config;