mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
12 lines
163 B
TypeScript
12 lines
163 B
TypeScript
|
import type { BuildConfig } from 'unbuild'
|
||
|
|
||
|
export default <BuildConfig>{
|
||
|
declaration: false,
|
||
|
entries: [
|
||
|
'src/index'
|
||
|
],
|
||
|
externals: [
|
||
|
'nuxt3'
|
||
|
]
|
||
|
}
|