0

我有这个 package.json 脚本:

"scripts": {
    "build": "nwb build-react-component",
    "clean": "nwb clean-module && nwb clean-demo",
    "start": "nwb serve-react-demo --host 127.0.0.1 --port 3000",
    "test": "nwb test-react",
    "test:coverage": "nwb test-react --coverage",
    "test:watch": "nwb test-react --server"
  },

如果我使用 npm 在http://127.0.0.1:3000启动这个 rune me 服务器

我如何运行https?

我尝试HTTPS=true npm start 但它不起作用:(

请帮忙

4

2 回答 2

1

您可以通过devServer.https配置来做到这一点,无论是在您的nwb.config.js模块中......</p>

{
  devServer: {
    https: true
  }
}

…或通过 CLI:

nwb serve-react-demo --devServer.https
于 2018-08-09T04:29:19.157 回答
0

在 nwb.config.js 中配置

module.exports = { 
 devServer: {
  host: "sso-admin-presit.hktdc.com",
  port: 443,
  https: true   
 },
}
于 2018-11-27T08:01:47.287 回答