mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
c53c7360b7
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
16 lines
234 B
TypeScript
16 lines
234 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
'src/index'
|
|
],
|
|
dependencies: [
|
|
],
|
|
externals: [
|
|
'vitest',
|
|
'playwright',
|
|
'playwright-core'
|
|
]
|
|
})
|