如何取消保留 windows 中的端口

how to unreserve ports in windows

我正在使用 SharePoint 框架 webpart 并且 workbench 的默认端口是 4321,对于另一个开发该端口的 webpart 是保留的并且 workbench 页面无法访问,比如我把端口改成4322了,但是怎么取消保留默认端口呢?

SPFX WebPart 的端口已在配置->serve.json 中指定,您可以在那里更改为默认端口:

{
  "$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
  "port": 4321,
  "https": true,
  "initialPage": "https://localhost:5432/workbench",
  "api": {
    "port": 5432,
    "entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
  }
}