Skip to content

Commit 63cb4e0

Browse files
committed
contact.html
1 parent 2a13e09 commit 63cb4e0

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

api/server.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ app.use(cors({
8181

8282
app.use(express.json({ limit: "100kb" }));
8383

84+
app.get("/", (_req, res) => {
85+
res.status(200).json({ ok: true, service: "zion-contact-api", health: "/api/health" });
86+
});
87+
8488
async function readJsonFile(filePath, fallback) {
8589
try {
8690
const content = await fs.readFile(filePath, "utf8");

deploy/pages-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"*.html"
1010
],
1111
"prod": [
12-
"index.html"
12+
"index.html", "bible.html", "contact.html"
1313
]
1414
}

0 commit comments

Comments
 (0)