mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
01db83032a
Co-authored-by: pooya parsa <pyapar@gmail.com>
15 lines
213 B
TypeScript
15 lines
213 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
'src/index'
|
|
],
|
|
externals: [
|
|
'@nuxt/schema',
|
|
'webpack',
|
|
'vite',
|
|
'h3'
|
|
]
|
|
})
|