We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b46db36 commit df921a7Copy full SHA for df921a7
packages/slidev/node/commands/export.ts
@@ -206,10 +206,9 @@ export async function exportSlides({
206
if (clicks)
207
query.set('clicks', clicks)
208
209
- const path = `${no}?${query.toString()}`
210
const url = routerMode === 'hash'
211
- ? `http://localhost:${port}${base}#${path}`
212
- : `http://localhost:${port}${base}${path}`
+ ? `http://localhost:${port}${base}?${query}#${no}`
+ : `http://localhost:${port}${base}${no}?${query}`
213
await page.goto(url, {
214
waitUntil: 'networkidle',
215
timeout,
0 commit comments