cube-template
cube-template copied to clipboard
[Feature] 增加 IP 显示提
项目启动后,增加 IP 地址提示
真机调试的时候,往往需要手机访问,而 localhost 是不能直接被访问,故显示 IP 地址会更方便友好一些
- 依赖
npm install ip --save-dev
- /build/webpack.dev.conf.js
const ip = require('ip')
// ...
compilationSuccessInfo: {
messages: [
`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`,
`Your application is running here: http://${ip.address()}:${port}`
]
},
- 效果