Vue-SSR-Koa2-Scaffold/config/app.js
2018-11-11 23:47:41 +08:00

8 lines
275 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
app: {
port: 3000, // 监听的端口
devHost: 'localhost', // 开发环境下打开的地址监听了0.0.0.0但是不是所有设备都支持访问这个地址用127.0.0.1或localhost代替
open: true // 是否打开浏览器
}
}