.env.production 255 B

123456789101112
  1. # 线上环境
  2. ENV = 'production'
  3. # 开启压缩
  4. VITE_COMPRESSION = true
  5. # public path 配置线上环境路径(打包)
  6. VITE_PUBLIC_PATH = '/'
  7. # 线上环境接口地址
  8. VITE_API_URL = 'http://ipos.biz:8070'
  9. #VITE_API_URL = 'http://localhost:8000'