launch.json 636 B

123456789101112131415161718192021222324
  1. { // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
  2. // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
  3. "version": "0.0",
  4. "configurations": [{
  5. "app-plus" :
  6. {
  7. "launchtype" : "remote"
  8. },
  9. "default" :
  10. {
  11. "launchtype" : "remote"
  12. },
  13. "h5" :
  14. {
  15. "launchtype" : "remote"
  16. },
  17. "mp-weixin" :
  18. {
  19. "launchtype" : "remote"
  20. },
  21. "type" : "uniCloud"
  22. }
  23. ]
  24. }