You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 207B

1234567891011121314
  1. const env = 'dev' // 开发环境
  2. // const env = 'prod' // 生产环境
  3. const configOption = {
  4. dev: {
  5. prefix: '/newDev/ndev'
  6. },
  7. prod: {
  8. prefix: '/newProd/prod'
  9. }
  10. }
  11. export default configOption[env]