Skip building AppImage when compiling on Linux #7867
-
Hi, I wonder if there is a way to configure Tauri not to build an AppImage bundle of my application? Best regards |
Beta Was this translation helpful? Give feedback.
Answered by
FabianLars
Sep 20, 2023
Replies: 1 comment 2 replies
-
You're looking for bundle.targets in tauri.conf.json: https://tauri.app/v1/api/config#bundleconfig.targets (it's typically set to For a more temporary approach you can also use the --bundle flag, for example |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
el-myz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're looking for bundle.targets in tauri.conf.json: https://tauri.app/v1/api/config#bundleconfig.targets (it's typically set to
"all"
).For a more temporary approach you can also use the --bundle flag, for example
tauri build --bundle deb
for a .deb file ortauri build --bundle none
for just the binary and no bundle.