Serving static website
I have a static website with an index.html that imports a main.js and css file. When serving index.html with Deno using Deno.readFile("./dist/index.html"), I get a blank page with errors in the console for the main.js file that it references. Do I have to define all paths and return the corresponsing paths? Is there no straightforward way to do this by just passing the directory?
5 Replies
does your server also serve the main.js file and css file using Deno.readFile()?
@LuckyCoder you can use https://deno.land/std@0.208.0/http/file_server.ts?s=serveDir to serve an entire directory of files
Thanks for this 🙂 I will look into this. Certainly saves lines of code.
Or this for a little more control.
Thanks 🙂