mirror of
https://github.com/stronk-dev/RandomChad.git
synced 2025-07-05 18:35:10 +02:00
6 lines
167 B
JavaScript
6 lines
167 B
JavaScript
const express = require( 'express' )
|
|
const cors = require( 'cors' )
|
|
|
|
|
|
// CORS enabled express generator
|
|
module.exports = f => express().use( cors( { origin: true } ) ) |