mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
51 lines
978 B
TypeScript
51 lines
978 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
{
|
|
input: 'src/config/index',
|
|
outDir: 'schema',
|
|
name: 'config',
|
|
builder: 'untyped',
|
|
defaults: {
|
|
rootDir: '/<rootDir>/',
|
|
vite: {
|
|
base: '/'
|
|
}
|
|
}
|
|
},
|
|
'src/index',
|
|
],
|
|
externals: [
|
|
// Type imports
|
|
'vue-router',
|
|
'@nuxt/telemetry',
|
|
'vue-bundle-renderer',
|
|
'@unhead/schema',
|
|
'vue',
|
|
'unctx',
|
|
'hookable',
|
|
'nitropack',
|
|
'webpack',
|
|
'webpack-bundle-analyzer',
|
|
'rollup-plugin-visualizer',
|
|
'vite',
|
|
'@vitejs/plugin-vue',
|
|
'@vitejs/plugin-vue-jsx',
|
|
'mini-css-extract-plugin',
|
|
'terser-webpack-plugin',
|
|
'css-minimizer-webpack-plugin',
|
|
'webpack-dev-middleware',
|
|
'h3',
|
|
'webpack-hot-middleware',
|
|
'postcss',
|
|
'consola',
|
|
'ignore',
|
|
// Implicit
|
|
'@vue/compiler-core',
|
|
'@vue/shared',
|
|
'untyped'
|
|
]
|
|
})
|