-
SummaryI tried creating a next app from a template and saw in the documentation the Additional informationA small reproduction repo of what I'm doing is added below as an example. Example |
Beta Was this translation helpful? Give feedback.
Answered by
icyJoseph
Feb 19, 2025
Replies: 1 comment 3 replies
-
Aha, I think that parameter is to be used when you also pass a GitHub URL npx create-next-app --example "https://github.com/glpecile/example-path-repro" --example-path "src/repro" delete-me-example-path But it is not to be used for local file system starters. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
glpecile
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aha, I think that parameter is to be used when you also pass a GitHub URL
example
. Like in your case:npx create-next-app --example "https://github.com/glpecile/example-path-repro" --example-path "src/repro" delete-me-example-path
But it is not to be used for local file system starters.