Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitropoulos committed Sep 5, 2024
1 parent 7cdc458 commit 32efb97
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Learn how to handle environments for your applications.
import { Callout } from '#/components/callout';
import { Tabs, Tab } from '#/components/tabs';
import { Accordion, Accordions } from '#/components/accordion';
import { metadata } from 'eslint-plugin-turbo';
import { frameworks } from '@turbo/types';

Environment variable inputs are a vital part of your applications that you'll need to account for in your Turborepo configuration.

Expand Down Expand Up @@ -67,7 +67,7 @@ Turborepo automatically adds prefix wildcards to your [`env`](/repo/docs/referen
</tr>
</thead>
<tbody>
{metadata.frameworks.map(({ name, envWildcards }) => (
{frameworks.map(({ name, envWildcards }) => (
<tr key={name}>
<td>{name}</td>
<td>{envWildcards.map((w) => <code>{w}</code>).join(', ')}</td>
Expand Down

0 comments on commit 32efb97

Please sign in to comment.