2022-02-25 12:42:34 +00:00
|
|
|
import { createSSRApp, createApp, nextTick } from 'vue'
|
|
|
|
import { createNuxtApp, applyPlugins, normalizePlugins, CreateOptions } from '#app'
|
|
|
|
import '#build/css'
|
|
|
|
// @ts-ignore
|
|
|
|
import _plugins from '#build/plugins'
|
|
|
|
// @ts-ignore
|
|
|
|
import RootComponent from '#build/root-component.mjs'
|
|
|
|
// @ts-ignore
|
|
|
|
import AppComponent from '#build/app-component.mjs'
|
2021-05-20 11:42:41 +00:00
|
|
|
|
2022-02-25 12:42:34 +00:00
|
|
|
let entry: Function
|
|
|
|
|
|
|
|
const plugins = normalizePlugins(_plugins)
|
|
|
|
|
|
|
|
if (process.server) {
|
|
|
|
entry = async function createNuxtAppServer (ssrContext: CreateOptions['ssrContext'] = {}) {
|
|
|
|
const vueApp = createApp(RootComponent)
|
|
|
|
vueApp.component('App', AppComponent)
|
|
|
|
|
|
|
|
const nuxt = createNuxtApp({ vueApp, ssrContext })
|
|
|
|
|
|
|
|
await applyPlugins(nuxt, plugins)
|
|
|
|
|
|
|
|
await nuxt.hooks.callHook('app:created', vueApp)
|
|
|
|
|
|
|
|
return vueApp
|
|
|
|
}
|
|
|
|
}
|
2021-05-20 11:42:41 +00:00
|
|
|
|
|
|
|
if (process.client) {
|
2022-02-25 12:42:34 +00:00
|
|
|
// TODO: temporary webpack 5 HMR fix
|
|
|
|
// https://github.com/webpack-contrib/webpack-hot-middleware/issues/390
|
|
|
|
// @ts-ignore
|
|
|
|
if (process.dev && import.meta.webpackHot) {
|
|
|
|
// @ts-ignore
|
|
|
|
import.meta.webpackHot.accept()
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = async function initApp () {
|
|
|
|
const isSSR = Boolean(window.__NUXT__?.serverRendered)
|
|
|
|
const vueApp = isSSR ? createSSRApp(RootComponent) : createApp(RootComponent)
|
|
|
|
vueApp.component('App', AppComponent)
|
|
|
|
|
|
|
|
const nuxt = createNuxtApp({ vueApp })
|
|
|
|
|
|
|
|
await applyPlugins(nuxt, plugins)
|
|
|
|
|
|
|
|
await nuxt.hooks.callHook('app:created', vueApp)
|
|
|
|
await nuxt.hooks.callHook('app:beforeMount', vueApp)
|
|
|
|
|
|
|
|
nuxt.hooks.hookOnce('app:suspense:resolve', () => {
|
|
|
|
nuxt.isHydrating = false
|
|
|
|
})
|
|
|
|
|
|
|
|
vueApp.mount('#__nuxt')
|
|
|
|
|
|
|
|
await nuxt.hooks.callHook('app:mounted', vueApp)
|
|
|
|
await nextTick()
|
|
|
|
}
|
|
|
|
|
|
|
|
entry().catch((error) => {
|
|
|
|
console.error('Error while mounting app:', error) // eslint-disable-line no-console
|
|
|
|
})
|
2021-05-20 11:42:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-25 12:42:34 +00:00
|
|
|
export default (ctx?: CreateOptions['ssrContext']) => entry(ctx)
|