Skip to content

docs: minor fixes #2085

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vitepress/theme/components/SponsorBanner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function dismiss() {
登録
</a>
</p>
<button @click="dismiss">
<button aria-label="close" @click="dismiss">
<svg
class="close"
xmlns="http://www.w3.org/2000/svg"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const props = withDefaults(defineProps<Props>(), {
v-if="props.framework.logo"
:src="props.framework.logo"
:alt="props.framework.name"
loading="lazy"
/>
</component>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ defineProps<{
:src="testimonial.avatar"
:alt="testimonial.name"
class="card__avatar"
loading="lazy"
/>
<div class="card__meta">
<span class="card__name">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ SolidJS in mind, they should scale from our simplest template to opinionated sta
name: 'David Cramer',
handle: '@zeeg',
avatar:
'https://pbs.twimg.com/profile_images/1706891973553168384/zdAPOznc_400x400.jpg',
'https://pbs.twimg.com/profile_images/1911613315765133312/HVkULegC_400x400.jpg',
comment: ['Vite has been a game changer for the industry.'],
},
{
Expand All @@ -69,7 +69,7 @@ SolidJS in mind, they should scale from our simplest template to opinionated sta
name: 'Christoph Nakazawa',
handle: '@cpojer',
avatar:
'https://pbs.twimg.com/profile_images/1854151427595407360/4GyUCgEH_400x400.jpg',
'https://pbs.twimg.com/profile_images/1910252462126313472/gXgT-jxL_400x400.jpg',
comment: ['Vite is gonna eat the (JavaScript) world.'],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const { data } = useSponsor()
alt="Vite is made possible by our contributors, partner companies, and sponsors"
width="58"
height="55"
loading="lazy"
/>
<h2>無料 &amp; オープンソース</h2>
<h4>
Expand All @@ -55,7 +56,7 @@ const { data } = useSponsor()
<h4>提供</h4>
<div class="voidzero">
<a :href="voidZero.url" target="_blank">
<img :src="voidZero.img" />
<img :src="voidZero.img" alt="VoidZero logo" loading="lazy" />
</a>
</div>

Expand Down
2 changes: 1 addition & 1 deletion guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## 概要

Vite(フランス語で「素早い」という意味の単語で `/vit/`<button style="border:none;padding:3px;border-radius:4px;vertical-align:bottom" id="play-vite-audio" onclick="document.getElementById('vite-audio').play();"><svg style="height:2em;width:2em"><use href="/voice.svg?no-inline#voice" /></svg></button> ヴィートのように発音)は、現代の Web プロジェクトのために、より速く無駄のない開発体験を提供することを目的としたビルドツールです。2 つの主要な部分で構成されています:
Vite(フランス語で「素早い」という意味の単語で `/vit/`<button style="border:none;padding:3px;border-radius:4px;vertical-align:bottom" id="play-vite-audio" aria-label="pronounce" onclick="document.getElementById('vite-audio').play();"><svg style="height:2em;width:2em"><use href="/voice.svg?no-inline#voice" /></svg></button> ヴィートのように発音)は、現代の Web プロジェクトのために、より速く無駄のない開発体験を提供することを目的としたビルドツールです。2 つの主要な部分で構成されています:

- 非常に高速な [Hot Module Replacement (HMR)](./features#hot-module-replacement) など、[ネイティブ ES モジュール](https://developer.mozilla.org/ja/docs/Web/JavaScript/Guide/Modules)を利用した[豊富な機能拡張](./features)を提供する開発サーバー。

Expand Down