Some checks failed
Build and Test / run-test (20.x) (push) Failing after 1m36s
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import lightSiteIcon from '../public/img/logo/red/icon-512.png';
|
|
import darkSiteIcon from '../public/img/logo/white/icon-512.png';
|
|
|
|
export const siteConfig = {
|
|
shortName: 'hideyoshi-blog',
|
|
name: 'hideyoshi-blog',
|
|
slug: 'hideyoshi-blog',
|
|
description: 'Personal Dev Blog',
|
|
url: process.env.FRONTEND_PATH || 'https://hideyoshi.com.br',
|
|
author: {
|
|
name: 'Vitor Hideyoshi',
|
|
email: 'vitor@hideyoshi.com.br',
|
|
links: {
|
|
github: 'https://github.com/HideyoshiNakazone',
|
|
twitter: 'https://twitter.com/NakazoneVitor',
|
|
},
|
|
},
|
|
icon: {
|
|
light: lightSiteIcon,
|
|
lightPaths: {
|
|
x16: 'img/logo/red/icon-16.png',
|
|
x32: 'img/logo/red/icon-32.png',
|
|
x96: 'img/logo/red/icon-96.png',
|
|
x180: 'img/logo/red/icon-180.png',
|
|
x512: 'img/logo/red/icon-512.png',
|
|
},
|
|
dark: darkSiteIcon,
|
|
darkPaths: {
|
|
x16: 'img/logo/white/icon-16.png',
|
|
x32: 'img/logo/white/icon-32.png',
|
|
x96: 'img/logo/white/icon-96.png',
|
|
x180: 'img/logo/white/icon-180.png',
|
|
x512: 'img/logo/white/icon-512.png',
|
|
},
|
|
},
|
|
copyright: {
|
|
company: '',
|
|
initialYear: 2026,
|
|
},
|
|
};
|
|
|
|
export type SiteConfig = typeof siteConfig;
|