.env.docker 1.0 KB

12345678910111213141516171819202122232425262728
  1. NODE_ENV = production
  2. # just a flag
  3. ENV = 'docker'
  4. VUE_APP_PROJECT_NAME = 'zuihou-ui'
  5. # 开发环境请求域名前缀, 该变量仅仅开发环境需要设置
  6. VUE_APP_DEV_REQUEST_DOMAIN_PREFIX = 'http://tangyh.top:10000'
  7. # 请求域名前缀, 该变量仅仅生产环境需要设置
  8. VUE_APP_PROD_REQUEST_DOMAIN_PREFIX = ''
  9. # URI 前缀,用于根据URI前缀进行代理
  10. VUE_APP_BASE_API = '/api'
  11. # 是否启用多租户
  12. VUE_APP_IS_MULTI_TENANT = true
  13. # 是否启用验证码
  14. VUE_APP_IS_CAPTCHA = true
  15. # 客户端秘钥
  16. VUE_APP_CLIENT_ID=zuihou_ui
  17. VUE_APP_CLIENT_SECRET=zuihou_ui_secret
  18. # vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
  19. # to control whether the babel-plugin-dynamic-import-node plugin is enabled.
  20. # It only does one thing by converting all import() to require().
  21. # This configuration can significantly increase the speed of hot updates,
  22. # when you have a large number of pages.
  23. # Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js
  24. VUE_CLI_BABEL_TRANSPILE_MODULES = true