Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/src/web-client/counter_contract_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ This tutorial assumes you have a basic understanding of Miden assembly. To quick
pnpm i @demox-labs/miden-sdk@0.11.1
```

**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:

`package.json`

```json
"scripts": {
"dev": "next dev",
"dev": "next dev --webpack",
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/src/web-client/create_deploy_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ It is useful to think of notes on Miden as "cryptographic cashier's checks" that
pnpm install @demox-labs/miden-sdk@0.11.1
```

**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:

`package.json`

```json
"scripts": {
"dev": "next dev",
"dev": "next dev --webpack",
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/src/web-client/creating_multiple_notes_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ Anyone can run their own delegated prover server. If you are building a product
pnpm install @demox-labs/miden-sdk@0.11.1
```

**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:

`package.json`

```json
"scripts": {
"dev": "next dev",
"dev": "next dev --webpack",
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/src/web-client/foreign_procedure_invocation_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ This tutorial assumes you have a basic understanding of Miden assembly and compl
pnpm i @demox-labs/miden-sdk@0.11.1
```

**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:

`package.json`

```json
"scripts": {
"dev": "next dev",
"dev": "next dev --webpack",
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/src/web-client/unauthenticated_note_how_to.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ This tutorial assumes you have a basic understanding of Miden assembly. To quick
pnpm install @demox-labs/miden-sdk@0.11.1
```

**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:

`package.json`

```json
"scripts": {
"dev": "next dev",
"dev": "next dev --webpack",
...
}
```
Expand Down