Commit db4eb11 1 parent 0d844b5 commit db4eb11 Copy full SHA for db4eb11
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
Open a Nuxt starter on CodeSandbox, StackBlitz or locally to get up and running in a few seconds.
10
10
</p >
11
11
<CopyButton
12
- text =" npx nuxi @latest init my-app "
12
+ text =" npm create nuxt @latest"
13
13
class =" mt-4"
14
14
/>
15
15
</div >
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ const template = computed(() => {
10
10
return props .starter .repo === ' nuxt/starter'
11
11
? (props .starter .branch === ' v3' )
12
12
? ' '
13
- : ` -t ${props .starter .branch } `
14
- : ` -t "${props .starter .repo }#${props .starter .branch }" `
13
+ : ` -t ${props .starter .branch } `
14
+ : ` -t "${props .starter .repo }#${props .starter .branch }" `
15
15
})
16
16
17
17
const command = computed (() => {
18
- return ` npx nuxi init ${template .value }<${ template . value . includes ( ' module ' ) ? ' module ' : ' app ' }> `
18
+ return ` npm create nuxt@latest ${template .value }`
19
19
})
20
20
</script >
21
21
You can’t perform that action at this time.
0 commit comments