欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Nuxt用localhost可以访问用IP不能访问

程序员文章站 2022-07-15 16:04:36
...

Nuxt用localhost可以访问用IP不能访问
server下的index.js把
最后的

consola.ready({
    message: `Server listening on http://${host}:${port}`,
    badge: true
  })

改成

consola.ready({
    message: `Server listening on http://localhost:${port}`,
    badge: true
  })