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.
1234567891011121314 |
- const env = 'dev' // 开发环境
- // const env = 'prod' // 生产环境
-
- const configOption = {
- dev: {
- prefix: '/newDev/ndev'
- },
- prod: {
- prefix: '/newProd/prod'
- }
- }
-
-
- export default configOption[env]
|