Skip to content

Commit cd20177

Browse files
bteacexbrayat
authored andcommitted
chore: replace vite website link
1 parent da34422 commit cd20177

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ npm create vue@legacy
2828
2929
## Difference from Vue CLI
3030

31-
- Vite-Powered: Vue CLI is based on webpack, while `create-vue` is based on [Vite](https://vitejs.dev/). Vite supports most of the configured conventions found in Vue CLI projects out of the box, and provides a significantly better development experience due to its extremely fast startup and hot-module replacement speed. Learn more about why we recommend Vite over webpack [here](https://vitejs.dev/guide/why.html).
31+
- Vite-Powered: Vue CLI is based on webpack, while `create-vue` is based on [Vite](https://vite.dev/). Vite supports most of the configured conventions found in Vue CLI projects out of the box, and provides a significantly better development experience due to its extremely fast startup and hot-module replacement speed. Learn more about why we recommend Vite over webpack [here](https://vite.dev/guide/why.html).
3232

33-
- Scaffolding Tool: Unlike Vue CLI, `create-vue` itself is just a scaffolding tool. It creates a pre-configured project based on the features you choose, and delegates the rest to Vite. Projects scaffolded this way can directly leverage the [Vite plugin ecosystem](https://vitejs.dev/plugins/) which is Rollup-compatible.
33+
- Scaffolding Tool: Unlike Vue CLI, `create-vue` itself is just a scaffolding tool. It creates a pre-configured project based on the features you choose, and delegates the rest to Vite. Projects scaffolded this way can directly leverage the [Vite plugin ecosystem](https://vite.dev/plugins/) which is Rollup-compatible.
3434

3535
## Migrating from Vue CLI
3636

template/base/vite.config.js.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { defineConfig } from 'vite'
55
<%- importer %>
66
<%_ } _%>
77

8-
// https://vitejs.dev/config/
8+
// https://vite.dev/config/
99
export default defineConfig({
1010
plugins: [
1111
<%_ for (const { initializer } of plugins) { _%>

template/code/default/src/components/HelloWorld.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ defineProps({
1212
<h1 class="green">{{ msg }}</h1>
1313
<h3>
1414
You’ve successfully created a project with
15-
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
15+
<a href="https://vite.dev/" target="_blank" rel="noopener">Vite</a> +
1616
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>.
1717
</h3>
1818
</div>

template/code/default/src/components/TheWelcome.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import SupportIcon from './icons/IconSupport.vue'
2626
<template #heading>Tooling</template>
2727

2828
This project is served and bundled with
29-
<a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
29+
<a href="https://vite.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
3030
recommended IDE setup is
3131
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
3232
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If

template/code/router/src/components/HelloWorld.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ defineProps({
1212
<h1 class="green">{{ msg }}</h1>
1313
<h3>
1414
You’ve successfully created a project with
15-
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
15+
<a href="https://vite.dev/" target="_blank" rel="noopener">Vite</a> +
1616
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>.
1717
</h3>
1818
</div>

template/code/router/src/components/TheWelcome.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import SupportIcon from './icons/IconSupport.vue'
2626
<template #heading>Tooling</template>
2727

2828
This project is served and bundled with
29-
<a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
29+
<a href="https://vite.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
3030
recommended IDE setup is
3131
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
3232
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If

template/code/typescript-default/src/components/HelloWorld.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defineProps<{
99
<h1 class="green">{{ msg }}</h1>
1010
<h3>
1111
You’ve successfully created a project with
12-
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
12+
<a href="https://vite.dev/" target="_blank" rel="noopener">Vite</a> +
1313
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>.
1414
</h3>
1515
</div>

template/code/typescript-default/src/components/TheWelcome.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import SupportIcon from './icons/IconSupport.vue'
2626
<template #heading>Tooling</template>
2727

2828
This project is served and bundled with
29-
<a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
29+
<a href="https://vite.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
3030
recommended IDE setup is
3131
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
3232
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If

template/code/typescript-router/src/components/HelloWorld.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defineProps<{
99
<h1 class="green">{{ msg }}</h1>
1010
<h3>
1111
You’ve successfully created a project with
12-
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
12+
<a href="https://vite.dev/" target="_blank" rel="noopener">Vite</a> +
1313
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>. What's next?
1414
</h3>
1515
</div>

template/code/typescript-router/src/components/TheWelcome.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import SupportIcon from './icons/IconSupport.vue'
2626
<template #heading>Tooling</template>
2727

2828
This project is served and bundled with
29-
<a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
29+
<a href="https://vite.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
3030
recommended IDE setup is
3131
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
3232
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy