Problems with asyncData in Express.js + SSL
[issue link]I am change the server configuration to SSL and application is running normally,
but on startup asyncData functions do not working, others synchronous requests like onClick GET works.
var server = https.createServer(options, app).listen(port, function(){ console.log("Express server listening on port " + port); });
async asyncData ({ store, params }) { console.log(1) // not working }