Rewrite page in Svelte 5 #49

Merged
Neshura merged 94 commits from rewrite/svelte into main 2024-01-06 14:12:09 +00:00
Showing only changes of commit ee5d6e947a - Show all commits

View file

@ -0,0 +1,10 @@
import * as fs from "fs";
import {json} from "@sveltejs/kit";
export function GET() {
let content = fs.readdirSync("static/assets/icons");
content = content.filter((entry) => entry != ".directory")
return json(content);
}