Skip to content

Commit

Permalink
add code wrap for env docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitropoulos committed Sep 5, 2024
1 parent 8bc2d46 commit 492e835
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Turborepo automatically adds prefix wildcards to your [`env`](/repo/docs/referen
{frameworks.map(({ name, envWildcards }) => (
<tr key={name}>
<td>{name}</td>
<td>{envWildcards.join(', ')}</td>
<td>{envWildcards.map((w) => <code>{w}</code>).join(', ')}</td>
</tr>
))}
</tbody>
Expand Down

0 comments on commit 492e835

Please sign in to comment.