diff --git a/native/app.config.js b/native/app.config.js new file mode 100644 --- /dev/null +++ b/native/app.config.js @@ -0,0 +1,10 @@ +/* eslint-disable flowtype/require-valid-file-annotation */ + +import ip from 'internal-ip'; + +export default { + extra: { + // developer machine's hostname in the local network + natDevHostname: ip.v4.sync(), + }, +};