starshard/peafowl
Template
1
Fork 0
mirror of https://github.com/starshardstudio/peafowl.git synced 2024-11-23 05:24:19 +00:00

Revert "Fully remove cms"

This reverts commit 159da32f58.
This commit is contained in:
Steffo 2024-10-10 02:20:31 +02:00
parent 09041183ca
commit df9d2d4262
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -1,6 +1,10 @@
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: site.fetch
handler: app.fetch
})