I keep getting this error message below: I tried to find other stackoverflow post and articles but couldn\'t really sovle it. do any of you guys know what the problem is it?
Need to install cors library. Use terminal and run "npm install cors" then use below in server.js file:
var express = require('express') var cors = require('cors') var app = express() app.use(cors())
Or, refer link: https://www.npmjs.com/package/cors
Thanks,