标签: node.js browser-sync
BrowserSync可以在不同的端口上同时提供HTTP和HTTPS吗?
const bs = require('browser-sync').create(); bs.init({ server: "./app", port: 8080 https: false, .... });
根据文档,有option用于将协议切换到HTTPS。我想同时拥有它们:8080端口上的HTTP和8443端口上的HTTPS。