Is there a way to build without bundle? #10376
-
Hi, is there a way to build the app, without bundling. Then bundle in a separate step? The CLI arguments does not seem to allow it. How can I achieve that? Is it possible to only execute the bundle step with the cli? My use case is:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
In v2 there's a That said, your use case sounds like you'll need to rebuild the app itself (due to tauri.conf.json changes) anyway so sounds like you'll need this instead:
|
Beta Was this translation helpful? Give feedback.
-
Is there a way also just bundle command? Bundle the build? |
Beta Was this translation helpful? Give feedback.
In v2 there's a
tauri bundle
cli command, yes.That said, your use case sounds like you'll need to rebuild the app itself (due to tauri.conf.json changes) anyway so sounds like you'll need this instead:
tauri build --bundles none
(v1) ortauri build --no-bundle
(v2)tauri build