mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
105 lines
3.4 KiB
TypeScript
105 lines
3.4 KiB
TypeScript
import { resolve } from 'pathe'
|
|
import * as vite from 'vite'
|
|
import consola from 'consola'
|
|
import vuePlugin from '@vitejs/plugin-vue'
|
|
import viteJsxPlugin from '@vitejs/plugin-vue-jsx'
|
|
import type { Connect } from 'vite'
|
|
|
|
import { visualizer } from 'rollup-plugin-visualizer'
|
|
import { transform } from 'esbuild'
|
|
import { cacheDirPlugin } from './plugins/cache-dir'
|
|
import { replace } from './plugins/replace'
|
|
import { wpfs } from './utils/wpfs'
|
|
import type { ViteBuildContext, ViteOptions } from './vite'
|
|
import { writeManifest } from './manifest'
|
|
|
|
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'
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'#build/plugins': resolve(ctx.nuxt.options.buildDir, 'plugins/client')
|
|
}
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
chunkFileNames: ctx.nuxt.options.dev ? undefined : '[name]-[hash].mjs',
|
|
entryFileNames: ctx.nuxt.options.dev ? 'entry.mjs' : '[name]-[hash].mjs'
|
|
}
|
|
},
|
|
manifest: true,
|
|
outDir: resolve(ctx.nuxt.options.buildDir, 'dist/client')
|
|
},
|
|
plugins: [
|
|
replace({ 'process.env': 'import.meta.env' }),
|
|
cacheDirPlugin(ctx.nuxt.options.rootDir, 'client'),
|
|
vuePlugin(ctx.config.vue),
|
|
viteJsxPlugin()
|
|
],
|
|
server: {
|
|
middlewareMode: true
|
|
}
|
|
} as ViteOptions)
|
|
|
|
// Add analyze plugin if needed
|
|
if (ctx.nuxt.options.build.analyze) {
|
|
clientConfig.plugins.push({
|
|
name: 'nuxt-analyze-minify',
|
|
async generateBundle (_opts, outputBundle) {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
for (const [_bundleId, bundle] of Object.entries(outputBundle)) {
|
|
if (bundle.type !== 'chunk') { continue }
|
|
const originalEntries = Object.entries(bundle.modules)
|
|
const minifiedEntries = await Promise.all(originalEntries.map(async ([moduleId, module]) => {
|
|
const { code } = await transform(module.code || '', { minify: true })
|
|
return [moduleId, { ...module, code }]
|
|
}))
|
|
bundle.modules = Object.fromEntries(minifiedEntries)
|
|
}
|
|
return null
|
|
}
|
|
})
|
|
clientConfig.plugins.push(visualizer({
|
|
...ctx.nuxt.options.build.analyze as any,
|
|
// @ts-ignore
|
|
filename: ctx.nuxt.options.build.analyze.filename.replace('{name}', 'client'),
|
|
title: 'Client bundle stats',
|
|
gzipSize: true
|
|
}))
|
|
}
|
|
|
|
await ctx.nuxt.callHook('vite:extendConfig', clientConfig, { isClient: true, isServer: false })
|
|
|
|
const viteServer = await vite.createServer(clientConfig)
|
|
await ctx.nuxt.callHook('vite:serverCreated', viteServer)
|
|
|
|
const viteMiddleware: Connect.NextHandleFunction = (req, res, next) => {
|
|
// 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()
|
|
})
|
|
|
|
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`)
|
|
}
|
|
|
|
await writeManifest(ctx)
|
|
}
|