We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b60c4fd commit 937dfe8Copy full SHA for 937dfe8
1 file changed
test/fixtures/cli/nuxt.config.js
@@ -1,3 +1,8 @@
1
export default {
2
- watch: ['~/custom.file']
+ watch: ['~/custom.file'],
3
+ hooks(hook) {
4
+ hook('listen', (server, { port, host }) => {
5
+ process.stdout.write(`Listening on http://${host}:${port}`)
6
+ })
7
+ }
8
}
0 commit comments