We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b86cc commit 9e5cd6dCopy full SHA for 9e5cd6d
packages/remix-dev/cli/run.ts
@@ -253,18 +253,19 @@ export async function run(argv: string[] = process.argv.slice(2)) {
253
name: "appType",
254
type: "list",
255
message: "What type of app do you want to create?",
256
+ default: "template",
257
when() {
258
return flags.template === undefined;
259
},
260
choices: [
- {
261
- name: "A pre-configured stack ready for production",
262
- value: "stack",
263
- },
264
{
265
name: "Just the basics",
266
value: "template",
267
+ {
+ name: "A pre-configured stack ready for production",
+ value: "stack",
268
+ },
269
],
270
271
0 commit comments