.env.development 969 B

123456789101112131415161718192021222324252627282930313233343536
  1. # just a flag
  2. ENV = 'development'
  3. # base api
  4. # VUE_APP_BASE_API = '/dev-api'
  5. # VUE_APP_BASE_API = 'http://192.168.1.84:8081/'
  6. # VUE_APP_BASE_API = 'http://localhost:8081/'
  7. # VUE_APP_BASE_API = 'http://139.196.88.215:8082/'
  8. # VUE_APP_BASE_API = 'http://139.196.88.215:8000/'
  9. # VUE_APP_BASE_API = 'https://kptyun.cn:8084/'
  10. # VUE_APP_BASE_API = 'http://139.196.88.215:8083/'
  11. # 正式线
  12. # VUE_APP_BASE_API = 'https://kptyun.cn/'
  13. # 测试线
  14. VUE_APP_BASE_API = 'http://210.16.189.72:8099/'
  15. # vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
  16. # to control whether the babel-plugin-dynamic-import-node plugin is enabled.
  17. # It only does one thing by converting all import() to require().
  18. # This configuration can significantly increase the speed of hot updates,
  19. # when you have a large number of pages.
  20. # Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js
  21. VUE_CLI_BABEL_TRANSPILE_MODULES = true