mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
19 lines
334 B
TypeScript
19 lines
334 B
TypeScript
|
import { defineBuildConfig } from 'unbuild'
|
||
|
import config from '../webpack/build.config'
|
||
|
|
||
|
export default defineBuildConfig({
|
||
|
...config[0],
|
||
|
externals: [
|
||
|
'@rspack/core',
|
||
|
'#builder',
|
||
|
'@nuxt/schema',
|
||
|
],
|
||
|
entries: [
|
||
|
{
|
||
|
input: '../webpack/src/index',
|
||
|
name: 'index',
|
||
|
declaration: true,
|
||
|
},
|
||
|
],
|
||
|
})
|