mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
dec8f99fc3
Co-authored-by: Clark Du <clark.duxin@gmail.com>
22 lines
390 B
JavaScript
22 lines
390 B
JavaScript
export default {
|
|
build: true,
|
|
hooks: {
|
|
async 'build:done' (pkg) {
|
|
const mono = pkg.load('../..')
|
|
|
|
await pkg.copyFilesFrom(mono, [
|
|
'LICENSE',
|
|
'README.md'
|
|
])
|
|
}
|
|
},
|
|
ignoreUnused: [
|
|
// used by postinstall
|
|
'@nuxt/opencollective',
|
|
// discovered by config
|
|
'@nuxt/components',
|
|
'@nuxt/loading-screen',
|
|
'@nuxt/telemetry'
|
|
]
|
|
}
|