UNPKG

gridsome

Version:

A JAMstack framework for building blazing fast websites with Vue.js

16 lines (11 loc) 275 B
const { BOOTSTRAP_FULL } = require('../utils/constants') module.exports = async ( context, options = {}, phase = BOOTSTRAP_FULL ) => { const App = require('./App') const instance = new App(context, options) await instance.bootstrap(phase) return instance }