We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85ca31c commit 940eff9Copy full SHA for 940eff9
2 files changed
package.json
@@ -8,6 +8,7 @@
8
"build": "tsc -b && vite build",
9
"preview": "vite preview",
10
"tauri": "tauri",
11
+ "tauri:dev-cdp": "powershell -ExecutionPolicy Bypass -File ./scripts/dev-cdp.ps1",
12
"typecheck": "tsgo -b --noEmit",
13
"format": "biome format --write .",
14
"lint": "biome check .",
scripts/dev-cdp.ps1
@@ -0,0 +1,4 @@
1
+# scripts/dev-cdp.ps1
2
+$env:WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS="--remote-debugging-port=9222"
3
+$env:WEBVIEW2_USER_DATA_FOLDER="$env:TEMP\reinamanager-webview2-cdp"
4
+pnpm tauri dev
0 commit comments