UNPKG

233 BPlain TextView Raw
1import { bootstrap } from '@cortexql/core';
2import '@cortexql/types/bootstrap';
3// add your hooks and plugins in between
4bootstrap()
5 .catch(error => {
6 console.log(error.stack !== undefined ? error.stack : error.message);
7 });