[ci] format

This commit is contained in:
bluwy 2023-06-26 03:40:32 +00:00 committed by astrobot-houston
parent f75b354715
commit 39a24f111d

View file

@ -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);