Skip to content

Commit 3e9b258

Browse files
authored
docs: set default flags for nextjs in react quickstart (#2004)
* docs: set default flags for nextjs * docs: fix app-integration hyphen
1 parent f099aea commit 3e9b258

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

docs/pages/react-native/getting-started/getting-started-expo.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,4 +331,4 @@ Our packages list a minimum version of React as 18.2.0, but the latest version o
331331

332332
## Next Steps
333333

334-
Move on to [app integration](/docs/wallets/react-native/getting-started/app integration)!
334+
Move on to [app integration](/docs/wallets/react-native/getting-started/app-integration)!

docs/pages/react-native/getting-started/getting-started-rn-bare.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,4 @@ npx react-native run-android
170170

171171
## Next Steps
172172

173-
Move on to [app integration](/docs/wallets/react-native/getting-started/app integration)!
173+
Move on to [app integration](/docs/wallets/react-native/getting-started/app-integration)!

docs/pages/react/getting-started/initialization.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@ In this doc and the three following we will build a Next.js application with Alc
1111
Start by initializing a new [Next.js app](https://nextjs.org/). Run:
1212

1313
```bash
14-
npx create-next-app@latest
14+
npx create-next-app@latest \
15+
--typescript \
16+
--tailwind \
17+
--app
1518
```
1619

20+
This command passes in flags to use Typescript, Tailwind and the next app router. The following docs in this guide will expect you to use these.
21+
1722
## Install Dependencies
1823

1924
You will need these three libraries:

0 commit comments

Comments
 (0)