index.ts 269 B

1234567891011
  1. import { bootstrap } from '@vendure/core';
  2. import { devConfig } from './dev-config';
  3. /**
  4. * This bootstraps the dev server, used for testing Vendure during development.
  5. */
  6. bootstrap(devConfig).catch(err => {
  7. // tslint:disable-next-line
  8. console.log(err);
  9. });