Commit 5328f50
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
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
| 111 | + | |
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments