Remove accidental file: log.json

This commit is contained in:
Alex Gleason 2025-02-15 14:32:10 -06:00
parent 3476f45b41
commit 5ee682ef8f
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 1 additions and 227 deletions

226
log.json

File diff suppressed because one or more lines are too long

View file

@ -18,7 +18,7 @@ export const frontendController: AppMiddleware = async (c) => {
c.header('Cache-Control', 'max-age=86400, s-maxage=30, public, stale-if-error=604800');
try {
const content = await Deno.readTextFile(new URL('../../public/index.html', import.meta.url));
const content = await Deno.readTextFile(new URL('../../../public/index.html', import.meta.url));
if (content.includes(META_PLACEHOLDER)) {
const params = getPathParams(c.req.path);