env.js 322 B

123456789101112131415
  1. if (process.env.NODE_ENV == 'production') {
  2. window.env = {
  3. profile: 'production',
  4. server: {
  5. baseUrl: 'http://192.168.0.181:8560'
  6. }
  7. }
  8. } else {
  9. window.env = {
  10. profile: 'development',
  11. server: {
  12. baseUrl: 'http://192.168.0.181:8560'
  13. }
  14. }
  15. }