...
|
...
|
@@ -13,13 +13,15 @@ try { |
|
|
info.host = dev.host;
|
|
|
info.publicPath = `http://${info.host}:${info.port}/`;
|
|
|
} catch (e) {
|
|
|
console.error(e);
|
|
|
console.warn(`
|
|
|
推荐在项目主目录建一个 .devhost 文件,内容为
|
|
|
{
|
|
|
"host": "127.0.0.1"
|
|
|
if (!process.env.NODE_ENV) {
|
|
|
console.error(e);
|
|
|
console.warn(`
|
|
|
推荐在项目主目录建一个 .devhost 文件,内容为
|
|
|
{
|
|
|
"host": "127.0.0.1"
|
|
|
}
|
|
|
`);
|
|
|
}
|
|
|
`);
|
|
|
}
|
|
|
|
|
|
module.exports = info; |
...
|
...
|
|