-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
{{task.name}}
+
{{task.description}}
+
+
+
+
+
+
+
+
+
+
+
+
{{task.date}}
{{task.time}}
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
{{task.name}}
-
{{task.description}}
-
-
-
-
-
-
-
-
-
-
-
-
{{task.date}}
{{task.time}}
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/src/api_window.js b/src/api_window.js
deleted file mode 100644
index 7428819..0000000
--- a/src/api_window.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import { createApp } from "vue";
-import ApiApp from "./ApiApp.vue";
-
-createApp(ApiApp).mount("#app_api");
\ No newline at end of file
diff --git a/vite.config.js b/vite.config.js
index ce8e371..2df86ac 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -2,7 +2,7 @@ import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
-export default defineConfig(async () => ({
+export default defineConfig(() => ({
plugins: [vue()],
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
@@ -17,5 +17,5 @@ export default defineConfig(async () => ({
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
- },
+ }
}));