-
-
Notifications
You must be signed in to change notification settings - Fork 938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add initial Tauri v2 support #4379
base: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for origin-betaflight-app ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
I haven't tested it, but two questions or confirmations:
I'm right? |
For now this is for evaluation purpose |
4ba0507
to
eff5f85
Compare
I'm new to PWA , I want use tauri to communite with mavsdk , I want to base this project, I have no idea with this PWA , I don't know how to add tauri callback in this PWA,Can you give me some ideas. |
|
This pull request introduces the integration of Tauri into the project, along with some configuration and dependency updates. The most important changes include adding new scripts and dependencies to
package.json
, creating Tauri-specific configuration files, and updating build settings invite.config.js
.Requirements
Docker
Tauri Integration:
package.json
: Added new scripts for Tauri development and build, and included Tauri dependencies (@tauri-apps/api
and@tauri-apps/cli
). [1] [2]src-tauri/Cargo.toml
: Created a new Cargo configuration file for the Tauri application.src-tauri/build.rs
: Added a build script for Tauri.src-tauri/src/main.rs
: Set up the main entry point for the Tauri application.src-tauri/tauri.conf.json
: Created a Tauri configuration file with application settings and build commands.Build Configuration:
vite.config.js
: Updated the build output directory and added an alias for thesrc
directory. [1] [2]