DEV Community

Discussion on: Enabling CORS for Node Express Backend

Collapse
 
abhishekjain35 profile image
Abhishek Jain

Hey, I see a typo in there.

app.use('cors')
Enter fullscreen mode Exit fullscreen mode

Should be -

app.use(cors())
Enter fullscreen mode Exit fullscreen mode