diff options
author | 2023-06-26 03:40:32 +0000 | |
---|---|---|
committer | 2023-06-26 03:40:32 +0000 | |
commit | 39a24f111d06bd72cd64ff70f7af04fdc807b008 (patch) | |
tree | 0d3454d83a51aee0f58a536c7a8b557072675791 | |
parent | f75b354715dbdd38f68d4ad2006332ecab677526 (diff) | |
download | astro-39a24f111d06bd72cd64ff70f7af04fdc807b008.tar.gz astro-39a24f111d06bd72cd64ff70f7af04fdc807b008.tar.zst astro-39a24f111d06bd72cd64ff70f7af04fdc807b008.zip |
[ci] format
-rw-r--r-- | packages/integrations/node/README.md | 4 |
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); |