2021-04-09 13:48:39 +00:00
|
|
|
import type { BuildConfig } from 'unbuild'
|
|
|
|
|
|
|
|
export default <BuildConfig>{
|
|
|
|
declaration: false,
|
2021-04-09 15:52:45 +00:00
|
|
|
inlineDependencies: true,
|
2021-04-09 13:48:39 +00:00
|
|
|
entries: [
|
|
|
|
'src/index'
|
|
|
|
],
|
|
|
|
externals: [
|
|
|
|
'nuxt3'
|
|
|
|
]
|
|
|
|
}
|