Skip to content

Commit 1bdf01b

Browse files
authored
fix(isolation): distDir -> frontendDist
1 parent 5d3a540 commit 1bdf01b

File tree

1 file changed

+3
-3
lines changed
  • src/content/docs/concept/Inter-Process Communication

1 file changed

+3
-3
lines changed

src/content/docs/concept/Inter-Process Communication/isolation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Because the point of the Isolation application is to protect against Development
5656

5757
In this example, we will make a small hello-world style Isolation application and hook it up to an imaginary existing Tauri application. It will do no verification of the messages passing through it, only print the contents to the WebView console.
5858

59-
For the purposes of this example, let's imagine we are in the same directory as `tauri.conf.json`. The existing Tauri application has it's `distDir` set to `../dist`.
59+
For the purposes of this example, let's imagine we are in the same directory as `tauri.conf.json`. The existing Tauri application has its `frontendDist` set to `../dist`.
6060

6161
`../dist-isolation/index.html`:
6262

@@ -87,12 +87,12 @@ Now, all we need to do is set up our `tauri.conf.json` [configuration](#configur
8787

8888
## Configuration
8989

90-
Let's assume that our main frontend `distDir` is set to `../dist`. We also output our Isolation application to `../dist-isolation`.
90+
Let's assume that our main frontend `frontendDist` is set to `../dist`. We also output our Isolation application to `../dist-isolation`.
9191

9292
```json
9393
{
9494
"build": {
95-
"distDir": "../dist"
95+
"frontendDist": "../dist"
9696
},
9797
"app": {
9898
"security": {

0 commit comments

Comments
 (0)