設定でポートが指定されていない場合、環境変数を参照するように

This commit is contained in:
syuilo 2019-04-05 18:21:08 +09:00
parent 156577ab61
commit 9bbdb59088

View File

@ -29,6 +29,8 @@ export default function load() {
config.url = normalizeUrl(config.url);
config.port = config.port || parseInt(process.env.PORT, 10);
mixin.host = url.host;
mixin.hostname = url.hostname;
mixin.scheme = url.protocol.replace(/:$/, '');