webzone/server.ts
Sam Therapy 6d545fd908
All checks were successful
continuous-integration/drone/push Build is passing
use import map maybe
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-02-13 18:17:52 +01:00

22 lines
414 B
TypeScript

import Server from "lume/core/server.ts"
import expires from "lume/middlewares/expires.ts"
import not_found from "lume/middlewares/not_found.ts"
const port = 8000
const server = new Server({
port: port,
root: `${Deno.cwd()}/dist`,
})
server.use(expires())
server.use(not_found({
root: `${Deno.cwd()}/dist`,
page404: "404.html",
}))
server.start()
console.log(`Listening on http://localhost:${port}`)