@frontegg/nextjs 5.9.0-alpha.2753729540 → 5.9.1-alpha.2774932461
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,13 +25,13 @@ and integrate them into their SaaS portals in up to 5 lines of code.
|
|
|
25
25
|
To start a new Create Next App project with TypeScript, you can run:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
npx create-next-app --example "https://github.com/frontegg/frontegg-nextjs
|
|
28
|
+
npx create-next-app --example "https://github.com/frontegg/frontegg-nextjs" --example-path "apps/example" my-nextjs-app-name
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
or
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
yarn create next-app --example "https://github.com/frontegg/frontegg-nextjs
|
|
34
|
+
yarn create next-app --example "https://github.com/frontegg/frontegg-nextjs" --example-path "apps/example" my-nextjs-app-name
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
> If you've previously installed `create-react-app` globally via `npm install -g create-next-app`, we recommend you uninstall the package using `npm uninstall -g create-next-app` or `yarn global remove create-next-app` to ensure that `npx` always uses the latest version.
|