index.hbs 339 B

1234567
  1. {{#if isTs }}import { bootstrap } from '@vendure/core';{{else}}const { bootstrap } = require('@vendure/core');{{/if}}
  2. {{#if isTs }}import { config } from './vendure-config';{{else}}const { config } = require('./vendure-config');{{/if}}
  3. bootstrap(config).catch(err => {
  4. // tslint:disable-next-line:no-console
  5. console.log(err);
  6. });