index-dev.ts 260 B

12345678910
  1. import { devConfig } from './dev-config';
  2. import { bootstrap } from './src';
  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. });