Nuxt.js 启动时默认主机是 localhost
,默认端口号是 3000
。想自定义主机和端口号的话,需要在 next.config.js
中配置。如下示例:
export default {
server: {
port: 8000, // default: 3000
host: '0.0.0.0' // default: localhost,
}
}
完整配置参考:https://www.nuxtjs.cn/api/configuration-server
分类至
Vue,
含
0条评论