mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 09:22:27 +00:00
14 lines
209 B
JavaScript
14 lines
209 B
JavaScript
export default {
|
|
build: true,
|
|
hooks: {
|
|
async 'build:done'(pkg) {
|
|
const mono = pkg.load('../..')
|
|
|
|
await pkg.copyFilesFrom(mono, [
|
|
'LICENSE',
|
|
'README.md'
|
|
])
|
|
}
|
|
}
|
|
}
|