Skip to content
Discussion options

You must be logged in to vote

If you're talking about these plugins: https://tauri.studio/v1/guides/features/plugin you should be able to just call the .plugin() method multiple times, like:

fn main() {
  tauri::Builder::default()
    .plugin(my_awesome_plugin::init())
    .plugin(database_plugin::init())
    .plugin(some_other_plugin::init())
    .run(tauri::generate_context!())
    .expect("failed to run app");
}

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@a3pelawi
Comment options

Answer selected by a3pelawi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants