Files
start9.com/site/server/src/index-worker.ts
2026-03-12 12:27:34 -06:00

9 lines
201 B
TypeScript

import { bootstrapWorker } from '@vendure/core'
import { config } from './vendure-config'
bootstrapWorker(config)
.then(worker => worker.startJobQueue())
.catch(err => {
console.log(err)
})