1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Add initial Lume stuff

This commit is contained in:
RGBCube 2024-01-20 17:33:18 +03:00
commit f694638186
No known key found for this signature in database
8 changed files with 188 additions and 0 deletions

14
deno.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "npm:react"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
"build": "deno task lume",
"serve": "deno task lume --serve"
},
"imports": {
"lume/": "https://deno.land/x/lume@v2.0.3/"
}
}