mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
26 lines
569 B
TypeScript
26 lines
569 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
emitCJS: false,
|
|
entries: [
|
|
'src/index',
|
|
{ input: 'src/runtime/', outDir: 'dist/runtime', format: 'esm' },
|
|
{ input: 'src/runtime/', outDir: 'dist/runtime', format: 'cjs', declaration: false }
|
|
],
|
|
dependencies: [
|
|
'@cloudflare/kv-asset-handler',
|
|
'@netlify/functions',
|
|
'@nuxt/devalue',
|
|
'connect',
|
|
'destr',
|
|
'ohmyfetch',
|
|
'ora',
|
|
'vue-bundle-renderer',
|
|
'vue-server-renderer'
|
|
],
|
|
externals: [
|
|
'@nuxt/schema'
|
|
]
|
|
})
|