mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* chore(deps): update nextjs to 15.2.3 * fix: dev server crashes with next 15.2.0 * chore(deps): reenable updates for next packages * chore: address pull request feedback
11 lines
372 B
TypeScript
11 lines
372 B
TypeScript
// This import has to be the first import in the file so that the agent is overridden before any other modules are imported.
|
|
import "./undici-log-agent-override";
|
|
|
|
import { registerCronJobRunner } from "@homarr/cron-job-runner/register";
|
|
import { jobGroup } from "@homarr/cron-jobs";
|
|
|
|
void (async () => {
|
|
registerCronJobRunner();
|
|
await jobGroup.startAllAsync();
|
|
})();
|