如何关闭资源管理器环回?

时间:2017-08-19 07:48:51

标签: node.js mongodb explorer loopback

我用过

{
  "loopback-component-explorer": {
    "mountPath": false
  }
}

{
  "loopback-component-explorer": null
}

仍然无法关闭资源管理器环回

2 个答案:

答案 0 :(得分:1)

删除它:

"loopback-component-explorer": {
    "mountPath": "/explorer"
}

并且eplorer将不再起作用。

答案 1 :(得分:1)

试试这个

{
  "loopback-component-explorer": {
    "mountPath": false,
    "generateOperationScopedModels": true
  }
}