Skip to content

Commit

Permalink
[C3] fix: use full Remix template URL (#3272)
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish committed May 18, 2023
1 parent 7c871f6 commit 57f8055
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/mighty-goats-fry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-cloudflare": patch
---

Use full Remix template URL rather than the `cloudflare-pages` shorthand since it will be removed in a future version of `create-remix`
2 changes: 1 addition & 1 deletion packages/create-cloudflare/src/frameworks/remix/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const generate = async (ctx: PagesGeneratorContext) => {

await runFrameworkGenerator(
ctx,
`${npx} create-remix@${version} ${ctx.project.name} --template cloudflare-pages`
`${npx} create-remix@${version} ${ctx.project.name} --template https://github.com/remix-run/remix/tree/main/templates/cloudflare-pages`
);

logRaw(""); // newline
Expand Down

0 comments on commit 57f8055

Please sign in to comment.