mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +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'
|
|
]
|
|
}
|