Skip to content

Commit f6f110e

Browse files
committed
fix: bump next-mdx-remote version
1 parent 78a3ae3 commit f6f110e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/app/experiments/[slug]/page.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,15 @@ export default async function ExperimentPage({ params }: BlogPostPageProps) {
126126

127127
{/* Article Content */}
128128
<div className="mt-8">
129-
<MDXRemote source={post.content} components={mdxComponents} />
129+
<MDXRemote
130+
source={post.content}
131+
components={mdxComponents}
132+
// Disable while i am the only one that can post.
133+
options={{
134+
blockDangerousJS: false,
135+
blockJS: false,
136+
}}
137+
/>
130138
</div>
131139
</article>
132140
</div>

src/content/blog/surgical-code-editing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: 'ai'
66
tags: ['claude', 'ai-agents', 'token-efficiency', 'mcp', 'automation', 'tree-sitter']
77
featured: true
88
type: 'experiment'
9-
author: 'Eduardo Diaz'
9+
author: 'Esteban Estrada'
1010
thumbnail: '/images/blog/surgical-editing.png'
1111
---
1212

0 commit comments

Comments
 (0)