mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
Merge branch 'tapable' of github.com:Atinux/nuxt.js into tapable
This commit is contained in:
commit
7eebeefc39
@ -1,7 +1,7 @@
|
||||
import http from 'http'
|
||||
import connect from 'connect'
|
||||
import path from 'path'
|
||||
import chalk from 'chalk'
|
||||
import http from "http";
|
||||
import connect from "connect";
|
||||
import path from "path";
|
||||
import chalk from "chalk";
|
||||
|
||||
class Server {
|
||||
constructor (nuxt) {
|
||||
@ -70,7 +70,7 @@ class Server {
|
||||
this.server.listen(port, host, () => {
|
||||
let _host = host === '0.0.0.0' ? 'localhost' : host
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('\n' + chalk.bold(chalk.bgBlue.white(' OPEN ') + chalk.blue(` http://${_host}:${port}\n`)))
|
||||
console.log('\n' + chalk.bold(chalk.bgBlue.black(' OPEN ') + chalk.blue(` http://${_host}:${port}\n`)))
|
||||
})
|
||||
})
|
||||
.catch(this.nuxt.errorHandler)
|
||||
|
Loading…
Reference in New Issue
Block a user