Skip to content

Commit 39d8eee

Browse files
committed
Format code
1 parent dc93bf1 commit 39d8eee

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

server/app.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ const DIST_CANDIDATES = [
1010
path.resolve(__dirname, "..", "dist"),
1111
path.resolve(__dirname, ".."),
1212
];
13-
const DIST_DIR = DIST_CANDIDATES.find((candidate) =>
14-
fs.existsSync(path.join(candidate, "index.html")),
15-
) ?? DIST_CANDIDATES[0];
13+
const DIST_DIR =
14+
DIST_CANDIDATES.find((candidate) =>
15+
fs.existsSync(path.join(candidate, "index.html")),
16+
) ?? DIST_CANDIDATES[0];
1617

1718
export const app = express();
1819
app.use(express.json());

0 commit comments

Comments
 (0)