forked from vgulerianb/DocNavigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
33 lines (30 loc) · 984 Bytes
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** @type {import('next').NextConfig} */
// const cron = require("node-cron");
// let lastCron = 0;
// cron.schedule("* * * * *", async function () {
// const currentTime = new Date().getTime();
// if (currentTime - lastCron > 40000) {
// lastCron = currentTime;
// console.log("running a task every minute", new Date());
// if (process.env?.APP_URL)
// fetch(process.env?.APP_URL + "/api/taskqueue")
// .then((res) => res.json())
// .then((data) => {
// console.log("data", data);
// })
// .catch((e) => {
// console.log("error", e);
// });
// }
// });
const nextConfig = {
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback, // if you miss it, all the other options in fallback, specified
// by next.js will be dropped. Doesn't make much sense, but how it is
fs: false, // the solution
};
return config;
},
};
module.exports = nextConfig;