Do text-center in copyright in about && add testing data.

This commit is contained in:
yuanhau 2025-06-01 23:45:59 +08:00
parent 046f5ae446
commit ce1d150c11
4 changed files with 13 additions and 2 deletions

View file

@ -0,0 +1,9 @@
import * as cheerio from "cheerio";
export default defineEventHandler(async (event) => {
const slug = getRouterParam(event, "slug");
const buildUrl = "https://today.line.me/tw/v3/publisher/" + slug;
try {
const req = await fetch(buildUrl)
} catch (e) {}
})