Christoph
Christoph
Same here, not sure how long ago it stopped working. set ft returns filetype=vue
I assume the plugin is working otherwise, I've tried different commands (cs, c$) and they all work as expected, it just does no longer recognize whether I'm in the ,...
The serveranswer link did not work me but a cached page was available. For anyone wondering the solution on the page was ``` composer remove niklasravnsborg/laravel-pdf composer remove mpdf/mpdf composer...
I think I have the same issue on 1.2.3. I'm trying to use the sql plugin and followed the installation steps described there. ### Reproduction ``` #![cfg_attr( all(not(debug_assertions), target_os =...
Figured it out, the documentation for the plugin is missing something. It should be: ``` fn main() { tauri::Builder::default() .plugin(tauri_plugin_sql::Builder::default().build()) .run(tauri::generate_context!()) .expect("error while running tauri application"); } ``` Adding the...