mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
14 lines
275 B
JavaScript
Executable File
14 lines
275 B
JavaScript
Executable File
module.exports = {
|
|
hooks(hook) {
|
|
hook('build:done', nuxt => {
|
|
throw new Error('hook error')
|
|
})
|
|
hook('error', ({message}, from) => {
|
|
console.log(`[${from}]: ${message}`) // eslint-disable-line no-console
|
|
})
|
|
},
|
|
build: {
|
|
stats: false
|
|
}
|
|
}
|