mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-12 03:38:07 +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}`)
|
|
})
|
|
}
|
|
}
|