feat(config): add site configuration with GitHub repository URL

This commit is contained in:
cfngc4594 2025-02-21 00:07:34 +08:00
parent 8cf98674ef
commit 8d6e5067dc

9
src/config/site.ts Normal file
View File

@ -0,0 +1,9 @@
export const siteConfig = {
url: {
repo: {
github: "https://github.com/cfngc4594/monaco-editor-lsp-next",
},
},
};
export type SiteConfig = typeof siteConfig;