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

问题描述 投票:1回答:2

我用了

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

要么

{
  "loopback-component-explorer": null
}

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

node.js mongodb explorer loopback
2个回答
1
投票

删除这个:

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

并且探险家将不再工作。


1
投票

试试这个

{
  "loopback-component-explorer": {
    "mountPath": false,
    "generateOperationScopedModels": true
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.