0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] yarn format

This commit is contained in:
natemoo-re 2022-02-18 22:34:54 +00:00 committed by GitHub Actions
parent 1d9f8a57f5
commit 38fc7d64a7
2 changed files with 25 additions and 26 deletions

View file

@ -78,10 +78,9 @@
createServer((req, res) => {
const route = app.match(req);
if(route) {
if (route) {
let html = await app.render(req, route);
}
}).listen(8080);
```