summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bluwy <bluwy@users.noreply.github.com> 2023-06-26 03:40:32 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-06-26 03:40:32 +0000
commit39a24f111d06bd72cd64ff70f7af04fdc807b008 (patch)
tree0d3454d83a51aee0f58a536c7a8b557072675791
parentf75b354715dbdd38f68d4ad2006332ecab677526 (diff)
downloadastro-39a24f111d06bd72cd64ff70f7af04fdc807b008.tar.gz
astro-39a24f111d06bd72cd64ff70f7af04fdc807b008.tar.zst
astro-39a24f111d06bd72cd64ff70f7af04fdc807b008.zip
[ci] format
-rw-r--r--packages/integrations/node/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/node/README.md b/packages/integrations/node/README.md
index c264796ac..eed078bef 100644
--- a/packages/integrations/node/README.md
+++ b/packages/integrations/node/README.md
@@ -130,10 +130,10 @@ import express from 'express';
import { handler as ssrHandler } from './dist/server/entry.mjs';
const app = express();
-app.use(express.static('dist/client/'))
+app.use(express.static('dist/client/'));
app.use((req, res, next) => {
const locals = {
- title: 'New title'
+ title: 'New title',
};
ssrHandler(req, res, next, locals);