Vite入门教程 Vite HMR API build

2024-02-25 开发教程 Vite入门教程 匿名 3

类型校验:

async function build(
inlineConfig?: InlineConfig
): Promise<RollupOutput | RollupOutput[]>

使用示例:

const path = require('path')
const { build } = require('vite')
;(async () => {
await build({
root: path.resolve(__dirname, './project'),
base: '/foo/',
build: {
rollupOptions: {
// ...
}
}
})
})()