mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 01:53:55 +00:00
b263b4f930
Co-authored-by: Anthony Fu <hi@antfu.me> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
{ input: 'src/', name: 'app' }
|
|
],
|
|
dependencies: [
|
|
'ohmyfetch',
|
|
'vue-router',
|
|
'vuex5'
|
|
]
|
|
})
|