index-worker.hbs 215 B

12345678
  1. import { bootstrapWorker } from '@vendure/core';
  2. import { config } from './vendure-config';
  3. bootstrapWorker(config)
  4. .then(worker => worker.startJobQueue())
  5. .catch(err => {
  6. console.log(err);
  7. });