diff --git a/src/router.ts b/src/router.ts
index 39bad89b3..7c70bc9b1 100644
--- a/src/router.ts
+++ b/src/router.ts
@@ -84,6 +84,12 @@ const router = createRouter({
name: 'DownloadGitView',
component: () => import('@/views/DownloadGitView.vue'),
beforeEnter: guardElectronAccess
+ },
+ {
+ path: 'manual-configuration',
+ name: 'ManualConfigurationView',
+ component: () => import('@/views/ManualConfigurationView.vue'),
+ beforeEnter: guardElectronAccess
}
]
}
diff --git a/src/views/DownloadGitView.vue b/src/views/DownloadGitView.vue
index 720eaeb27..56b67ef38 100644
--- a/src/views/DownloadGitView.vue
+++ b/src/views/DownloadGitView.vue
@@ -1,7 +1,5 @@
-
-
+
diff --git a/vite.electron.config.mts b/vite.electron.config.mts
index 5b767af27..a2ec411b1 100644
--- a/vite.electron.config.mts
+++ b/vite.electron.config.mts
@@ -51,7 +51,8 @@ const mockElectronAPI: Plugin = {
onDownloadProgress: () => {}
},
getElectronVersion: () => Promise.resolve('1.0.0'),
- getComfyUIVersion: () => '9.9.9'
+ getComfyUIVersion: () => '9.9.9',
+ getPlatform: () => 'win32'
};`
}
]