2022-03-22 15:51:26 +00:00
|
|
|
// We set __webpack_public_path via this import with webpack builder
|
2022-02-25 12:42:34 +00:00
|
|
|
import { createSSRApp, createApp, nextTick } from 'vue'
|
2022-11-15 14:33:43 +00:00
|
|
|
import { $fetch } from 'ofetch'
|
2022-04-29 09:38:22 +00:00
|
|
|
// @ts-ignore
|
2022-04-20 12:35:33 +00:00
|
|
|
import { baseURL } from '#build/paths.mjs'
|
2022-12-11 21:44:52 +00:00
|
|
|
import type { CreateOptions } from '#app'
|
|
|
|
import { createNuxtApp, applyPlugins, normalizePlugins } from '#app'
|
2022-02-25 12:42:34 +00:00
|
|
|
import '#build/css'
|
|
|
|
// @ts-ignore
|
|
|
|
import _plugins from '#build/plugins'
|
|
|
|
// @ts-ignore
|
|
|
|
import RootComponent from '#build/root-component.mjs'
|
2022-11-10 11:41:02 +00:00
|
|
|
// @ts-ignore
|
|
|
|
import { appRootId } from '#build/nuxt.config.mjs'
|
2021-05-20 11:42:41 +00:00
|
|
|
|
2022-04-07 11:28:04 +00:00
|
|
|
if (!globalThis.$fetch) {
|
2022-04-29 09:38:22 +00:00
|
|
|
// @ts-ignore
|
2022-04-20 12:35:33 +00:00
|
|
|
globalThis.$fetch = $fetch.create({
|
|
|
|
baseURL: baseURL()
|
|
|
|
})
|
2022-04-07 11:28:04 +00:00
|
|
|
}
|
|
|
|
|
2022-02-25 12:42:34 +00:00
|
|
|
let entry: Function
|
|
|
|
|
|
|
|
const plugins = normalizePlugins(_plugins)
|
|
|
|
|
|
|
|
if (process.server) {
|
2022-06-08 19:37:50 +00:00
|
|
|
entry = async function createNuxtAppServer (ssrContext: CreateOptions['ssrContext']) {
|
2022-02-25 12:42:34 +00:00
|
|
|
const vueApp = createApp(RootComponent)
|
|
|
|
|
|
|
|
const nuxt = createNuxtApp({ vueApp, ssrContext })
|
|
|
|
|
2022-03-11 08:22:16 +00:00
|
|
|
try {
|
|
|
|
await applyPlugins(nuxt, plugins)
|
|
|
|
await nuxt.hooks.callHook('app:created', vueApp)
|
|
|
|
} catch (err) {
|
|
|
|
await nuxt.callHook('app:error', err)
|
2022-08-12 17:47:58 +00:00
|
|
|
nuxt.payload.error = (nuxt.payload.error || err) as any
|
2022-03-11 08:22:16 +00:00
|
|
|
}
|
2022-02-25 12:42:34 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
const nuxt = createNuxtApp({ vueApp })
|
|
|
|
|
2022-03-11 08:22:16 +00:00
|
|
|
try {
|
|
|
|
await applyPlugins(nuxt, plugins)
|
|
|
|
} catch (err) {
|
|
|
|
await nuxt.callHook('app:error', err)
|
2022-08-12 17:47:58 +00:00
|
|
|
nuxt.payload.error = (nuxt.payload.error || err) as any
|
2022-03-11 08:22:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await nuxt.hooks.callHook('app:created', vueApp)
|
|
|
|
await nuxt.hooks.callHook('app:beforeMount', vueApp)
|
2022-11-10 11:41:02 +00:00
|
|
|
vueApp.mount('#' + appRootId)
|
2022-03-11 08:22:16 +00:00
|
|
|
await nuxt.hooks.callHook('app:mounted', vueApp)
|
|
|
|
await nextTick()
|
|
|
|
} catch (err) {
|
|
|
|
await nuxt.callHook('app:error', err)
|
2022-08-12 17:47:58 +00:00
|
|
|
nuxt.payload.error = (nuxt.payload.error || err) as any
|
2022-03-11 08:22:16 +00:00
|
|
|
}
|
2022-02-25 12:42:34 +00:00
|
|
|
}
|
|
|
|
|
2022-08-12 17:47:58 +00:00
|
|
|
entry().catch((error: unknown) => {
|
2023-01-14 01:13:48 +00:00
|
|
|
console.error('Error while mounting app:', error)
|
2022-02-25 12:42:34 +00:00
|
|
|
})
|
2021-05-20 11:42:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-25 12:42:34 +00:00
|
|
|
export default (ctx?: CreateOptions['ssrContext']) => entry(ctx)
|