Skip to content

Commit 35b7361

Browse files
committedAug 16, 2022
fix: support urls with query during dev
1 parent 44953dc commit 35b7361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/node/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export async function createVitePressPlugin(
170170
// serve our index.html after vite history fallback
171171
return () => {
172172
server.middlewares.use((req, res, next) => {
173-
if (req.url!.endsWith('.html')) {
173+
if (req.url!.replace(/\?.*$/, '').endsWith('.html')) {
174174
res.statusCode = 200
175175
res.setHeader('Content-Type', 'text/html')
176176
res.end(`

0 commit comments

Comments
 (0)
Please sign in to comment.