Skip to content

Commit 53248fe

Browse files
authored
Merge pull request #117 from DenisBalan/patch-1
Fix dashboard URL format in vite.config.ts
1 parent 068ef8e commit 53248fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

understand-anything-plugin/packages/dashboard/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export default defineConfig({
240240
const address = server.httpServer?.address();
241241
const port = typeof address === "object" && address ? address.port : 5173;
242242
console.log(
243-
`\n 🔑 Dashboard URL: http://127.0.0.1:${port}?token=${ACCESS_TOKEN}\n`
243+
`\n 🔑 Dashboard URL: http://127.0.0.1:${port}/?token=${ACCESS_TOKEN}\n`
244244
);
245245
});
246246

0 commit comments

Comments
 (0)