aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/chilled-pears-know.md5
-rw-r--r--packages/create-astro/src/actions/template.ts2
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/chilled-pears-know.md b/.changeset/chilled-pears-know.md
new file mode 100644
index 000000000..dbedf612f
--- /dev/null
+++ b/.changeset/chilled-pears-know.md
@@ -0,0 +1,5 @@
+---
+"create-astro": patch
+---
+
+Updates the wording for choosing the "minimal" starter template options
diff --git a/packages/create-astro/src/actions/template.ts b/packages/create-astro/src/actions/template.ts
index da1362572..9aadb8128 100644
--- a/packages/create-astro/src/actions/template.ts
+++ b/packages/create-astro/src/actions/template.ts
@@ -24,7 +24,7 @@ export async function template(
{ value: 'basics', label: 'A basic, helpful starter project', hint: '(recommended)' },
{ value: 'blog', label: 'Use blog template' },
{ value: 'starlight', label: 'Use docs (Starlight) template' },
- { value: 'minimal', label: 'A minimal (empty) starter' },
+ { value: 'minimal', label: 'Use minimal (empty) template' },
],
});
ctx.template = tmpl;