mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
export default {
|
|
watch: ['~/custom.file'],
|
|
hooks(hook) {
|
|
hook('listen', (server, { port, host }) => {
|
|
process.stdout.write(`Listening on http://${host}:${port}`)
|
|
})
|
|
}
|
|
}
|