Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use [email protected] to avoid a serious bug #1536

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions src/content/docs/guides/create/mobile.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,23 @@ pub fn main() {
To develop mobile Tauri applications, your frontend must serve the assets listening on your public network address.
The network address can be found using the `internal-ip` NPM:

:::note

At the time of this writing, there is a [serious bug](https://github.com/sindresorhus/internal-ip/issues/48) in `8.0.0`. This is why `7.0.0` is specified explicitly.

:::


```shell
npm install --save-dev internal-ip
npm install --save-dev internal-ip@7.0.0
```

```shell
yarn add -D internal-ip
yarn add -D internal-ip@7.0.0
```

```shell
pnpm add -D internal-ip
pnpm add -D internal-ip@7.0.0
```

Then you need to configure your framework to use the internal IP.
Expand Down