- Setup tauri dev environment for your os
- init tauri with
npm run tauri init
- set web web assets dir to
../dist
- set dev server to http://localhost:3000
- development
- use
npm run dev
if you only want to develop the ui part in the browser - use
npm run tauri-dev
if you want to develop with tauri running. first run takes a while
- building
- use
npm run build
if you only want to build the ui part intodist
- use
npm run tauri-build
if you want to build the native app. first run takes a while
- enjoy