starshard/peafowl
Template
1
Fork 0
mirror of https://github.com/starshardstudio/peafowl.git synced 2024-11-21 12:34:20 +00:00

Fully remove cms

This commit is contained in:
Steffo 2024-10-10 01:52:01 +02:00
parent 1890134f76
commit 159da32f58
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -1,10 +1,6 @@
import {default as site} from "./_config.ts"
import {default as cms} from "./_cms.ts"
import {default as adapter} from "lume/cms/adapters/lume.ts"
const app = await adapter({site, cms})
Deno.serve({
port: 8080,
handler: app.fetch
handler: site.fetch
})