Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Dec 12, 2022
1 parent ed2e087 commit 40e7824
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/kit/src/exports/vite/dev/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,9 @@ export async function dev(vite, vite_config, svelte_config) {
res.writeHead(500, {
'Content-Type': 'text/html; charset=utf-8'
});
res.end(error_template({ status: 500, message: manifest_error.message ?? 'Invalid routes' }));
res.end(
error_template({ status: 500, message: manifest_error.message ?? 'Invalid routes' })
);

return;
}
Expand Down

0 comments on commit 40e7824

Please sign in to comment.