Skip to content

Commit 10109f7

Browse files
i18n(ja): create experimental flags index page (#13855)
Co-authored-by: Shinya Fujino <shf0811@gmail.com>
1 parent 37df2ae commit 10109f7

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

  • src/content/docs/ja/reference/experimental-flags
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: 実験的なフラグの設定
3+
i18nReady: true
4+
---
5+
6+
実験的な機能は、Astroの設定ファイルでフラグを有効にした場合にのみ使用できます。
7+
8+
9+
```js title="astro.config.mjs"
10+
import { defineConfig } from 'astro/config';
11+
12+
export default defineConfig({
13+
experimental: {
14+
// 実験的なフラグを有効にして
15+
// 新機能を試すことができます
16+
},
17+
});
18+
```
19+
20+
21+
Astroは、ユーザーが新機能をテストしてフィードバックを提供できるよう、実験的なフラグを提供しています。
22+
23+
これらのフラグを使用することで、問題を報告したり意見を共有したりして、機能開発に参加できます。これらの機能の安定性は保証されておらず、機能が活発に開発されている間は、小さな`patch`リリースであっても破壊的な変更が含まれる場合があります。
24+
25+
[Astroを頻繁にアップデート](/ja/upgrade-astro/#最新バージョンへのアップグレード)し、プロジェクトコードに必要な変更を通知する[Astroの変更履歴](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)のリリースノートを確認することをお勧めします。実験的な機能のドキュメントは、常に現在リリースされているバージョンのみを対象として更新されます。

0 commit comments

Comments
 (0)