mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Only show the URL locally, not on the Now platform
Now outputs a URL by itself
This commit is contained in:
parent
7086287eaf
commit
7bb903d563
|
@ -23,7 +23,10 @@ clean(dir)
|
|||
.then(async () => {
|
||||
const srv = new Server({ dir, dev: true, hotReload: true })
|
||||
await srv.start(argv.port)
|
||||
|
||||
if (!process.env.NOW) {
|
||||
console.log(`> Ready on http://localhost:${argv.port}`)
|
||||
}
|
||||
|
||||
// Check if pages dir exists and warn if not
|
||||
if (!(await exists(join(dir, 'pages')))) {
|
||||
|
|
|
@ -20,7 +20,9 @@ const dir = resolve(argv._[0] || '.')
|
|||
const srv = new Server({ dir })
|
||||
srv.start(argv.port)
|
||||
.then(() => {
|
||||
if (!process.env.NOW) {
|
||||
console.log(`> Ready on http://localhost:${argv.port}`)
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err)
|
||||
|
|
Loading…
Reference in a new issue