summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/early-chicken-scream.md5
-rw-r--r--packages/create-astro/src/index.ts2
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/early-chicken-scream.md b/.changeset/early-chicken-scream.md
new file mode 100644
index 000000000..bbe63e94b
--- /dev/null
+++ b/.changeset/early-chicken-scream.md
@@ -0,0 +1,5 @@
+---
+'create-astro': patch
+---
+
+Fix to revert change pointing create-astro at the latest branch
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts
index 21fa49de1..aa2cf7c5a 100644
--- a/packages/create-astro/src/index.ts
+++ b/packages/create-astro/src/index.ts
@@ -64,7 +64,7 @@ export async function main() {
const hash = args.commit ? `#${args.commit}` : '';
- const templateTarget = options.template.includes('/') ? options.template : `snowpackjs/astro#latest/examples/${options.template}`;
+ const templateTarget = options.template.includes('/') ? options.template : `snowpackjs/astro/examples/${options.template}`;
const emitter = degit(`${templateTarget}${hash}`, {
cache: false,