Initial Commit
This commit is contained in:
42
src/site.config.ts
Normal file
42
src/site.config.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
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://blog.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;
|
||||
Reference in New Issue
Block a user