Public
Like
basic_site
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
Can you include a normal script?
import { serveDir } from "https://deno.land/std@0.224.0/http/file_server.ts";
export default function httpHandler(req: Request): Promise { return serveDir(req, { fsRoot: "", // Serve from the current directory urlRoot: "", // Serve files from the root of the URL showDirListing: true, // Optional: display directory contents enableCors: true, // Optional: enable CORS for all responses }); }