2023-11-12 16:42:57 +00:00
|
|
|
import { readFile } from "node:fs/promises";
|
|
|
|
import { dirname, resolve } from "node:path";
|
|
|
|
import { fileURLToPath } from "node:url";
|
2023-11-14 17:18:52 +00:00
|
|
|
import type { SatoriOptions } from "x-satori/vue";
|
|
|
|
import { defineSatoriConfig } from "x-satori/vue";
|
|
|
|
|
2023-11-12 16:42:57 +00:00
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
const __fonts = resolve(__dirname, "../fonts");
|
|
|
|
|
|
|
|
const fonts: SatoriOptions["fonts"] = [
|
|
|
|
{
|
|
|
|
name: "Inter",
|
|
|
|
data: await readFile(resolve(__fonts, "Inter-Regular.otf")),
|
|
|
|
weight: 400,
|
|
|
|
style: "normal",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Inter",
|
|
|
|
data: await readFile(resolve(__fonts, "Inter-Medium.otf")),
|
|
|
|
weight: 500,
|
|
|
|
style: "normal",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Inter",
|
|
|
|
data: await readFile(resolve(__fonts, "Inter-SemiBold.otf")),
|
|
|
|
weight: 600,
|
|
|
|
style: "normal",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Inter",
|
|
|
|
data: await readFile(resolve(__fonts, "Inter-Bold.otf")),
|
|
|
|
weight: 700,
|
|
|
|
style: "normal",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default defineSatoriConfig({
|
|
|
|
width: 1200,
|
|
|
|
height: 628,
|
|
|
|
fonts,
|
|
|
|
props: {
|
|
|
|
title: "Title",
|
|
|
|
description:
|
|
|
|
"Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.",
|
|
|
|
dir: "/j",
|
|
|
|
},
|
|
|
|
});
|