Разверните приложение mern на heroku с помощью httpsServer
#node.js #heroku #https #server #web-deployment Вопрос: const express=require('express'); const cors=require('cors'); const app=express(); const path = require('path'); const https=require('https'); const fs=require('fs'); //midlleware app.use(express.json()); app.use(cors()); //Certificate SSL const httpsServer = https.createServer({ key:…