App Publishing
Build your UI Assets
Now that you are ready to package your project, you will need to instruct your framework to create the assets.
SVELTE using yarn:
REACT-CREATE-APP using npm
QUASAR using global @quasar/cli
tauri bundler
Make certain that you have installed that tauri bundler:
If you do not see a version number being reported, then you must install the bundler:
Inform tauri about your distributables location
Be sure that you have configured the src-tauri/tauri.conf.json to correctly point at the assets.
Edit src-tauri/tauri.conf.json:
Run tauri build
Like the dev window, the first time you run this, it will take some time to collect the rust crates and build everything - but on subsequent runs it will only need to rebuild the tauri crates themselves.
Because of the way that rust builds its targets, the final app is placed in the following folder:
src-tauri/target/release/bundle
Next Step:
App Debugging