index-worker.ts 193 B

12345678
  1. import { bootstrapWorker } from '@vendure/core';
  2. import { devConfig } from './dev-config';
  3. bootstrapWorker(devConfig).catch(err => {
  4. // tslint:disable-next-line
  5. console.log(err);
  6. });