Why does the browser try to get files through https when the host is 0.0.0.0?
问题 I have an app created by create-react-app . After building, it generates a html file with some JS and CSS files. The html file looks like <!doctype html>...<script src="/static/js/main.89f33fbb.chunk.js"></script></body></html> I try to host those static files by an Express.js server. const app = express() .use(bodyParser.json()) .use(express.static(path.join(__dirname, '../dist'))) app.listen(5000, '0.0.0.0'); When I try to open http://127.0.0.1:5000 or http://localhost:5000 in browser, it