base
網站基本配置,包含導航欄、頁尾和網站名稱。
格式
type Base = {
title: string;
description: string;
};
範例
export const base: Base = {
title: "tomocat",
description: "tomocat's personal website",
};
Last updated on
網站基本配置,包含導航欄、頁尾和網站名稱。
type Base = {
title: string;
description: string;
};
export const base: Base = {
title: "tomocat",
description: "tomocat's personal website",
};