如何使用Parcel.js将我的起始网址更改为自定义网址

 {
   "name": "openlayers","version": "1.0.0","main": "index.js","scripts": {
   "test": "echo \"Error: no test specified\" && exit 1","start": "parcel  index.html","build": "parcel build --public-url . index.html"
  },"author": "","license": "ISC","dependencies": {
 "app-root-path": "^2.2.1","authenticate": "^0.1.5","commonjs": "0.0.1","config": "^3.2.4","document-ready": "^2.0.2","eazy-logger": "^3.0.2","fs": "0.0.1-security","jquery": "^3.4.1","leaflet": "^1.6.0","ol": "^5.3.3","ol-contextmenu": "^3.3.2","ol-hashed": "^2.0.0","ol-layerswitcher": "^3.4.0","proj4": "^2.6.0","sidebar-v2": "^0.4.0","simple-datatables": "^2.1.7","simple-node-logger": "^18.12.23","winston": "^3.2.1","winston-daily-rotate-file": "^3.10.0"
}

任何帮助将不胜感激。当前网址是http://localhost:1234。我希望这是一个自定义网址,用于与第三方服务进行身份验证,从而仅允许对这些网址进行身份验证。

yxm407949656 回答:如何使用Parcel.js将我的起始网址更改为自定义网址

您根据documentation使用--host选项。

因此在您的脚本部分:

"start": "parcel serve index.html --host example.com",
,

您必须将域添加到主机文件,然后按照上述说明进行操作。

"start": "parcel serve index.html --host example.com",
本文链接:https://www.f2er.com/3027539.html

大家都在问