![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/@nuxt/loading-screen/lib/ |
module.exports = function NuxtLoadingScreen () { if (!this.options.dev) { return } const defu = require('defu') const LoadingUI = require('./loading') const { nuxt } = this const baseURL = nuxt.options.router.base + '_loading' const options = this.options.build.loadingScreen = defu(this.options.build.loadingScreen, { baseURL, baseURLAlt: baseURL, altPort: false, image: undefined, colors: {} }) const loading = new LoadingUI(options) nuxt.options.serverMiddleware.push({ path: '/_loading', handler: (req, res) => { loading.app(req, res) } }) if (options.altPort) { nuxt.hook('listen', async (_, { url }) => { await loading.initAlt({ url }) }) } nuxt.hook('close', async () => { await loading.close() }) nuxt.hook('bundler:progress', (states) => { loading.setStates(states) }) nuxt.hook('cli:buildError', (error) => { loading.setError(error) }) nuxt.hook('server:nuxt:renderLoading', (req, res) => { loading.serveIndex(req, res) }) }