Skip to content

Commit 234d7e7

Browse files
committed
feat(html)!: support more asset sources
1 parent c9ffe18 commit 234d7e7

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

guide/features.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,17 +170,31 @@ HTML ファイルは、Vite プロジェクトの[中心](/guide/#index-html-and
170170
- `<root>/about.html` -> `http://localhost:5173/about.html`
171171
- `<root>/blog/index.html` -> `http://localhost:5173/blog/index.html`
172172

173-
デフォルトでは、`<script type="module">``<link href>` タグなどの HTML 要素が処理され、リンクされたファイルで Vite の機能を使用できるようになります。また、`<img src>``<video src>``<source src>` などの一般的なアセット要素もリベースされ、最適化され、正しいパスにリンクされるようになります。
174-
175-
```html
173+
Files referenced by HTML elements such as `<script type="module">` and `<link href>` are processed and bundled as part of the app. General asset elements can also reference assets to be optimized by default, including:
174+
175+
- `<audio src>`
176+
- `<embed src>`
177+
- `<img src>``<img srcset>`
178+
- `<image src>`
179+
- `<input src>`
180+
- `<link href>``<link imagesrcet>`
181+
- `<object data>`
182+
- `<source src>``<source srcset>`
183+
- `<track src>`
184+
- `<use href>``<use xlink:href>`
185+
- `<video src>``<video poster>`
186+
- `<meta content>`
187+
- `name` 属性が `msapplication-tileimage``msapplication-square70x70logo``msapplication-square150x150logo``msapplication-wide310x150logo``msapplication-square310x310logo``msapplication-config``twitter:image` に一致する場合のみ
188+
- または、`property` 属性が `og:image``og:image:url``og:image:secure_url``og:audio``og:audio:secure_url``og:video``og:video:secure_url` に一致する場合のみ
189+
190+
```html {4-5,8-9}
176191
<!doctype html>
177192
<html>
178193
<head>
179194
<link rel="icon" href="/favicon.ico" />
180195
<link rel="stylesheet" href="/src/styles.css" />
181196
</head>
182197
<body>
183-
<div id="app"></div>
184198
<img src="/src/images/logo.svg" alt="logo" />
185199
<script type="module" src="/src/main.js"></script>
186200
</body>

0 commit comments

Comments
 (0)