My blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove lume cms

dish 379af045 f7ec61d6

+1 -23
-18
_cms.ts
··· 1 - import lumeCMS from "lume/cms/mod.ts"; 2 - 3 - const cms = lumeCMS({ 4 - site: { 5 - name: "dish cms", 6 - description: "cms for dish's blog" 7 - } 8 - }); 9 - 10 - cms.document("homepage", "src:index.vto", [ 11 - "title: text", 12 - "subtitle: text", 13 - "summary: text", 14 - "date: datetime", 15 - "content: markdown", 16 - ]); 17 - 18 - export default cms;
+1 -5
deno.json
··· 3 3 "@catppuccin/tailwindcss": "npm:@catppuccin/tailwindcss@^0.1.6", 4 4 "@img/sharp-wasm32": "npm:@img/sharp-wasm32@0.33.5", 5 5 "lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/", 6 - "lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0a3d1ffb097b2f5d38a66d31adbe749a53492bf0/", 7 6 "sharp": "npm:sharp@0.33.5" 8 7 }, 9 8 "tasks": { 10 9 "lume": "echo \"import 'lume/cli.ts'\" | deno run -A -", 11 10 "build": "deno task lume", 12 11 "serve": "deno task lume -s", 13 - "cms": "deno task lume cms", 14 12 "fmt": "deno task dprint fmt", 15 13 "fmt:check": "deno task dprint check", 16 14 "dprint": "deno run -A npm:dprint" 17 15 }, 18 16 "compilerOptions": { 19 - "types": [ 20 - "lume/types.ts" 21 - ] 17 + "types": ["lume/types.ts"] 22 18 }, 23 19 "nodeModulesDir": "auto" 24 20 }