fix(build): add no strip flag when building

This is related to https://github.com/tauri-apps/tauri/issues/8929
The issue arises from linuxdeploy side
The current solution is to add NO_STRIP=true before building the application

Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
This commit is contained in:
Rodney Osodo
2025-06-11 08:41:39 +03:00
parent b2e34febc1
commit 68d4eb808f
+1 -1
View File
@@ -7,7 +7,7 @@
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
"tauri": "NO_STRIP=true tauri"
},
"dependencies": {
"react": "^18.3.1",