Skip to content

Commit

Permalink
docs: fix typo (#8881)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcroat committed Jul 1, 2022
1 parent cad27ee commit 8970f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/ssr.md
Expand Up @@ -130,7 +130,7 @@ app.use('*', async (req, res, next) => {
// 6. Send the rendered HTML back.
res.status(200).set({ 'Content-Type': 'text/html' }).end(html)
} catch (e) {
// If an error is caught, let Vite fix the stracktrace so it maps back to
// If an error is caught, let Vite fix the stack trace so it maps back to
// your actual source code.
vite.ssrFixStacktrace(e)
next(e)
Expand Down

0 comments on commit 8970f16

Please sign in to comment.