summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/tricky-adults-jump.md7
-rw-r--r--packages/create-astro/src/actions/template.ts3
2 files changed, 9 insertions, 1 deletions
diff --git a/.changeset/tricky-adults-jump.md b/.changeset/tricky-adults-jump.md
new file mode 100644
index 000000000..2f2abe6cf
--- /dev/null
+++ b/.changeset/tricky-adults-jump.md
@@ -0,0 +1,7 @@
+---
+"astro": patch
+---
+
+Adds the minimal starter template to the list of `create astro` options
+
+Good news if you're taking the introductory tutorial in docs, making a minimal reproduction, or just want to start a project with as little to rip out as possible. Astro's `minimal` (empty) template is now back as one of the options when running `create astro@latest` and starting a new project!
diff --git a/packages/create-astro/src/actions/template.ts b/packages/create-astro/src/actions/template.ts
index 6ac2e5be2..da1362572 100644
--- a/packages/create-astro/src/actions/template.ts
+++ b/packages/create-astro/src/actions/template.ts
@@ -21,9 +21,10 @@ export async function template(
message: 'How would you like to start your new project?',
initial: 'basics',
choices: [
- { value: 'basics', label: 'A basic, minimal starter', hint: '(recommended)' },
+ { 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' },
],
});
ctx.template = tmpl;