fix: default route for logo

This commit is contained in:
jialin
2025-02-23 13:32:03 +08:00
parent 69feb6a4f1
commit 2c2e9396c4
6 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export const addWorkerGuide: Record<string, any> = {
getToken:
'Get-Content -Path (Join-Path -Path $env:APPDATA -ChildPath "gpustack\\token") -Raw',
registerWorker(params: { server: string; token: string }) {
return `Invoke-Expression "& { $((Invoke-WebRequest -Uri "https://get.gpustack.ai" -UseBasicParsing).Content) } --server-url ${params.server} --token ${params.token}"`;
return `Invoke-Expression "& { $((Invoke-WebRequest -Uri 'https://get.gpustack.ai' -UseBasicParsing).Content) } --server-url '${params.server}' --token '${params.token}'"`;
}
},
cuda: {