mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
01bee2f0ea
Co-authored-by: "yangjian.fe" <yangjian.fe@bytedance.com> Co-authored-by: underfin <likui6666666@gmail.com>
18 lines
266 B
TypeScript
18 lines
266 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
'src/index',
|
|
],
|
|
externals: [
|
|
'@rspack/core',
|
|
'@nuxt/schema',
|
|
'nitropack',
|
|
'nitro',
|
|
'webpack',
|
|
'vite',
|
|
'h3',
|
|
],
|
|
})
|