Skip to content

Commit 5328f50

Browse files
committed
fix: escape angle brackets in MDX files to prevent build errors
Fix Next.js build failure caused by unescaped < characters in markdown tables. MDX interprets < as HTML tag start, causing parse errors. Changed: - 'Low memory (<4GB)' -> 'Low memory (under 4GB)' - 'Memory-conservative systems (<4GB RAM)' -> 'Memory-conservative systems (under 4GB RAM)' This resolves the webpack compilation error in configuration.mdx.
1 parent e27f05c commit 5328f50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

website/content/docs/configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Control scanning and indexing performance using environment variables:
108108

109109
| System Type | Global | TypeScript | Indexer | Notes |
110110
|-------------|--------|------------|---------|-------|
111-
| Low memory (<4GB) | 5 | 5 | 2 | Prevents OOM errors |
111+
| Low memory (under 4GB) | 5 | 5 | 2 | Prevents OOM errors |
112112
| Standard (4-8GB) | 15 | 15 | 3 | Balanced performance |
113113
| High-end (8GB+, 8+ cores) | 30 | 30 | 5 | Maximum speed |
114114

website/content/updates/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Fine-tune scanning and indexing performance with environment variables:
2626
export DEV_AGENT_TYPESCRIPT_CONCURRENCY=30
2727
export DEV_AGENT_INDEXER_CONCURRENCY=8
2828

29-
# Memory-conservative systems (<4GB RAM)
29+
# Memory-conservative systems (under 4GB RAM)
3030
export DEV_AGENT_CONCURRENCY=5
3131
export DEV_AGENT_INDEXER_CONCURRENCY=2
3232

0 commit comments

Comments
 (0)