Skip to content

Commit 1656f03

Browse files
authoredMay 6, 2022
fix(plugin): set content-type header for serving index.html (#616)
1 parent 3adc43d commit 1656f03

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/node/plugin.ts

+1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ export function createVitePressPlugin(
164164
server.middlewares.use((req, res, next) => {
165165
if (req.url!.endsWith('.html')) {
166166
res.statusCode = 200
167+
res.setHeader('Content-Type', 'text/html')
167168
res.end(`
168169
<!DOCTYPE html>
169170
<html>

0 commit comments

Comments
 (0)
Please sign in to comment.