Skip to content

Commit

Permalink
i18n(ja): Add missing-media-query-directive.mdx (#4330)
Browse files Browse the repository at this point in the history
Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
  • Loading branch information
morinokami and yanthomasdev authored Aug 24, 2023
1 parent 9a2bb21 commit 33faf65
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: Missing value for client:media directive.
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> **MissingMediaQueryDirective**: `client:media`ディレクティブにメディアクエリーが指定されていません。`client:media="(max-width: 600px)"`のようにメディアクエリーを指定する必要があります。
## 何が問題か?

[メディアクエリー](https://developer.mozilla.org/ja/docs/Web/CSS/CSS_media_queries/Using_media_queries)パラメーターは、`client:media`ディレクティブを使用する場合に必須です。

```astro
<Counter client:media="(max-width: 640px)" />
```

**以下も参照してください:**
- [`client:media`](/ja/reference/directives-reference/#clientmedia)


0 comments on commit 33faf65

Please sign in to comment.