sometimescool22

Results 2 comments of sometimescool22

Getting this even without CORS. Copied from https://serverless.com/blog/serverless-express-rest-api/ ```js const serverless = require('serverless-http'); const express = require('express') const app = express() app.get('/', function (req, res) { res.send('Hello World!') }) module.exports.handler...