Update server.js
Browse files
server.js
CHANGED
|
@@ -19,7 +19,7 @@ const PORT = process.env.PORT || 3000;
|
|
| 19 |
app.use(cors());
|
| 20 |
app.use(json());
|
| 21 |
|
| 22 |
-
const PROVIDERS = ["https://cdn.moviesapi.club"
|
| 23 |
let browserPool;
|
| 24 |
const cache = new LRUCache({ max: 500, ttl: 15 * 60 * 1000 });
|
| 25 |
const limit = pLimit(2);
|
|
|
|
| 19 |
app.use(cors());
|
| 20 |
app.use(json());
|
| 21 |
|
| 22 |
+
const PROVIDERS = ["https://cdn.moviesapi.club"];
|
| 23 |
let browserPool;
|
| 24 |
const cache = new LRUCache({ max: 500, ttl: 15 * 60 * 1000 });
|
| 25 |
const limit = pLimit(2);
|