department-of-veterans-affairs/vets-website

View on GitHub
src/site/constants/vsp-environments.js

Summary

Maintainability
A
35 mins
Test Coverage
/*
 * Export string mapped to the current environment for Sentry tagging. Workaround until:
 * https://github.com/department-of-veterans-affairs/va.gov-team/issues/13425
 *
 * Modifying these values will break Sentry error reporting for Va.gov website. 
 */

const environments = require('./environments');

export default Object.freeze({
  [environments.LOCALHOST]: 'localhost',
  [environments.VAGOVDEV]: 'development',
  [environments.VAGOVSTAGING]: 'staging',
  [environments.VAGOVPROD]: 'production',
});