Skip to content

Commit

Permalink
update all property references to point to new name
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffanynwyeung committed Dec 10, 2024
1 parent 44e6644 commit 06ceade
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,12 @@ You can add the following to your `next.config.js`:
/** @type {import('next').NextConfig} */
const nextConfig = {
// highlight-start
experimental: {
serverComponentsExternalPackages: ['@aws-crypto'],
},
serverComponentsPackages: ['@aws-crypto'],
// highlight-end
};
```

See Next.js documentation on [`serverComponentsExternalPackages`](https://nextjs.org/docs/app/api-reference/config/next-config-js/serverExternalPackages) for more details.
See Next.js documentation on [`serverComponentsPackages`](https://nextjs.org/docs/app/api-reference/config/next-config-js/serverExternalPackages) for more details.
</Callout>

### With Next.js App Router
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,14 +246,12 @@ You can add the following to your `next.config.js`:
/** @type {import('next').NextConfig} */
const nextConfig = {
// highlight-start
experimental: {
serverComponentsExternalPackages: ['@aws-crypto'],
},
serverComponentsPackages: ['@aws-crypto'],
// highlight-end
};
```

See Next.js documentation on [`serverComponentsExternalPackages`](https://nextjs.org/docs/app/api-reference/config/next-config-js/serverExternalPackages) for more details.
See Next.js documentation on [`serverComponentsPackages`](https://nextjs.org/docs/app/api-reference/config/next-config-js/serverExternalPackages) for more details.
</Callout>

### With Next.js App Router
Expand Down

0 comments on commit 06ceade

Please sign in to comment.