2021-09-27 12:49:36 +00:00
|
|
|
import { resolve } from 'pathe'
|
2021-10-02 16:01:17 +00:00
|
|
|
import * as vite from 'vite'
|
2021-09-07 09:35:55 +00:00
|
|
|
import consola from 'consola'
|
2021-10-26 12:49:18 +00:00
|
|
|
import vuePlugin from '@vitejs/plugin-vue'
|
2021-10-13 10:34:51 +00:00
|
|
|
import viteJsxPlugin from '@vitejs/plugin-vue-jsx'
|
2021-10-18 07:54:20 +00:00
|
|
|
import type { Connect } from 'vite'
|
2021-09-07 09:35:55 +00:00
|
|
|
|
2021-04-29 11:51:54 +00:00
|
|
|
import { cacheDirPlugin } from './plugins/cache-dir'
|
2021-11-05 08:58:03 +00:00
|
|
|
import { analyzePlugin } from './plugins/analyze'
|
2021-09-07 09:35:55 +00:00
|
|
|
import { wpfs } from './utils/wpfs'
|
|
|
|
import type { ViteBuildContext, ViteOptions } from './vite'
|
2021-10-12 14:05:20 +00:00
|
|
|
import { writeManifest } from './manifest'
|
2021-11-05 08:55:53 +00:00
|
|
|
import { devStyleSSRPlugin } from './plugins/dev-ssr-css'
|
2021-04-29 11:51:54 +00:00
|
|
|
|
|
|
|
export async function buildClient (ctx: ViteBuildContext) {
|
|
|
|
const clientConfig: vite.InlineConfig = vite.mergeConfig(ctx.config, {
|
|
|
|
define: {
|
|
|
|
'process.server': false,
|
|
|
|
'process.client': true,
|
|
|
|
'module.hot': false,
|
|
|
|
global: 'globalThis'
|
|
|
|
},
|
2021-07-23 14:58:38 +00:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'#build/plugins': resolve(ctx.nuxt.options.buildDir, 'plugins/client')
|
|
|
|
}
|
|
|
|
},
|
2021-04-29 11:51:54 +00:00
|
|
|
build: {
|
2021-09-07 09:35:55 +00:00
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
chunkFileNames: ctx.nuxt.options.dev ? undefined : '[name]-[hash].mjs',
|
|
|
|
entryFileNames: ctx.nuxt.options.dev ? 'entry.mjs' : '[name]-[hash].mjs'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
manifest: true,
|
2021-10-05 14:18:03 +00:00
|
|
|
outDir: resolve(ctx.nuxt.options.buildDir, 'dist/client')
|
2021-04-29 11:51:54 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
cacheDirPlugin(ctx.nuxt.options.rootDir, 'client'),
|
2021-10-26 12:49:18 +00:00
|
|
|
vuePlugin(ctx.config.vue),
|
2021-11-05 08:55:53 +00:00
|
|
|
viteJsxPlugin(),
|
|
|
|
devStyleSSRPlugin(ctx.nuxt.options.rootDir)
|
2021-04-29 11:51:54 +00:00
|
|
|
],
|
|
|
|
server: {
|
|
|
|
middlewareMode: true
|
|
|
|
}
|
|
|
|
} as ViteOptions)
|
|
|
|
|
2021-10-21 19:51:44 +00:00
|
|
|
// Add analyze plugin if needed
|
|
|
|
if (ctx.nuxt.options.build.analyze) {
|
2021-11-05 08:58:03 +00:00
|
|
|
clientConfig.plugins.push(...analyzePlugin(ctx))
|
2021-10-21 19:51:44 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 11:51:54 +00:00
|
|
|
await ctx.nuxt.callHook('vite:extendConfig', clientConfig, { isClient: true, isServer: false })
|
|
|
|
|
|
|
|
const viteServer = await vite.createServer(clientConfig)
|
|
|
|
await ctx.nuxt.callHook('vite:serverCreated', viteServer)
|
|
|
|
|
2021-10-18 07:54:20 +00:00
|
|
|
const viteMiddleware: Connect.NextHandleFunction = (req, res, next) => {
|
2021-04-29 11:51:54 +00:00
|
|
|
// Workaround: vite devmiddleware modifies req.url
|
|
|
|
const originalURL = req.url
|
|
|
|
viteServer.middlewares.handle(req, res, (err) => {
|
|
|
|
req.url = originalURL
|
|
|
|
next(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
await ctx.nuxt.callHook('server:devMiddleware', viteMiddleware)
|
|
|
|
|
|
|
|
ctx.nuxt.hook('close', async () => {
|
|
|
|
await viteServer.close()
|
|
|
|
})
|
2021-09-07 09:35:55 +00:00
|
|
|
|
|
|
|
if (!ctx.nuxt.options.dev) {
|
|
|
|
const start = Date.now()
|
|
|
|
await vite.build(clientConfig)
|
|
|
|
await ctx.nuxt.callHook('build:resources', wpfs)
|
|
|
|
consola.info(`Client built in ${Date.now() - start}ms`)
|
|
|
|
}
|
|
|
|
|
2021-10-12 14:05:20 +00:00
|
|
|
await writeManifest(ctx)
|
2021-04-29 11:51:54 +00:00
|
|
|
}
|