import { bootstrap } from '@cortexql/core';
import '@cortexql/types/bootstrap';
// add your hooks and plugins in between
bootstrap()
  .catch(error => {
    console.log(error.stack !== undefined ? error.stack : error.message);
  });
