summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);