Nuxt/test/fixtures/cli/cli.build.config.js
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

12 lines
266 B
JavaScript

export default {
test: true,
hooks (hook) {
hook('build:done', () => {
process.stdout.write('Compiled successfully')
})
hook('listen', (server, { port, host }) => {
process.stdout.write(`Listening on http://${host}:${port}`)
})
}
}