2019-10-11 07:35:10 +00:00
|
|
|
import consola from 'consola'
|
|
|
|
|
2018-06-06 12:31:43 +00:00
|
|
|
export default {
|
2018-10-24 13:46:06 +00:00
|
|
|
test: true,
|
2019-10-11 07:35:10 +00:00
|
|
|
mode: 'spa',
|
2019-07-10 10:45:49 +00:00
|
|
|
hooks (hook) {
|
2018-07-25 08:00:21 +00:00
|
|
|
hook('build:done', () => {
|
2019-10-11 07:35:10 +00:00
|
|
|
consola.log('Compiled successfully')
|
2018-06-06 12:31:43 +00:00
|
|
|
})
|
|
|
|
hook('listen', (server, { port, host }) => {
|
2019-10-11 07:35:10 +00:00
|
|
|
consola.log(`Listening on http://${host}:${port}`)
|
2018-06-06 12:31:43 +00:00
|
|
|
})
|
2019-10-11 07:35:10 +00:00
|
|
|
},
|
|
|
|
build: {
|
|
|
|
terser: false
|
2018-06-06 12:31:43 +00:00
|
|
|
}
|
|
|
|
}
|