diff --git a/src/components/BlogLayout.tsx b/src/components/BlogLayout.tsx index f48432a..d4050fb 100644 --- a/src/components/BlogLayout.tsx +++ b/src/components/BlogLayout.tsx @@ -1,5 +1,6 @@ import { ReactNode } from 'react'; import { BlogHeader } from './BlogHeader'; +import packageJson from '../../package.json'; interface BlogLayoutProps { children: ReactNode; @@ -16,17 +17,7 @@ export function BlogLayout({ children }: BlogLayoutProps) {

Powered by Nostr

- {/*

- Vibed with{' '} - - MKStack - -

*/} +

Version {packageJson.version}

diff --git a/tsconfig.json b/tsconfig.json index 26ef794..4f01b57 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,7 @@ /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, + "resolveJsonModule": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true,