We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 777bf3d commit b5c67c6Copy full SHA for b5c67c6
doc/components/home-version-note.tsx
@@ -1,3 +1,5 @@
1
+import process from 'node:process'
2
+
3
export function HomeVersionNote() {
4
const version = process.env.NEXT_PUBLIC_MEMORY_SYNC_VERSION
5
@@ -7,7 +9,9 @@ export function HomeVersionNote() {
7
9
8
10
return (
11
<p className="home-version-note">
- Current version: <code>{version}</code>
12
+ Current version:
13
+ {' '}
14
+ <code>{version}</code>
15
</p>
16
)
17
}
doc/next.config.ts
@@ -1,5 +1,5 @@
-import {readFileSync} from 'node:fs'
import type {NextConfig} from 'next'
+import {readFileSync} from 'node:fs'
import nextra from 'nextra'
const mermaidAliasPath = '@/components/mermaid'
0 commit comments