fix deno.js to deploy static site

This commit is contained in:
James Feng Cao 2024-03-17 13:42:27 +08:00
parent 6e8ede8dd8
commit 8199f16d10
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@ import { serveFile } from "https://deno.land/std/http/file_server.ts";
async function handler(req){
let url = req.url;
let iSlash = url.indexOf('/',11);
let path = url.substring(iSlash+1);
let path = url.substring(iSlash);
if(path.endsWith('/'))
path = path + 'index.html';
return await serveFile(req, `${Deno.cwd()}/`+path);
return await serveFile(req, `${Deno.cwd()}`+path);
};
Deno.serve(handler);