summaryrefslogtreecommitdiff
path: root/.changeset/serious-pumas-run.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2024-08-15 02:48:37 -0700
committerGravatar GitHub <noreply@github.com> 2024-08-15 10:48:37 +0100
commit40a1b3002cfd22d9de7179af00fe12ef5a28b707 (patch)
tree906ead7717faa235916705f07b7ccf8287669981 /.changeset/serious-pumas-run.md
parentf4057c18c91f969e3e508545fb988aff94c3ff08 (diff)
downloadastro-@astrojs/web-vitals@2.0.0.tar.gz
astro-@astrojs/web-vitals@2.0.0.tar.zst
astro-@astrojs/web-vitals@2.0.0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/serious-pumas-run.md')
-rw-r--r--.changeset/serious-pumas-run.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/.changeset/serious-pumas-run.md b/.changeset/serious-pumas-run.md
deleted file mode 100644
index e6f7c9af1..000000000
--- a/.changeset/serious-pumas-run.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-'astro': minor
----
-
-Adds support for Intellisense features (e.g. code completion, quick hints) for your content collection entries in compatible editors under the `experimental.contentIntellisense` flag.
-
-```js
-import { defineConfig } from 'astro';
-
-export default defineConfig({
- experimental: {
- contentIntellisense: true
- }
-})
-```
-
-When enabled, this feature will generate and add JSON schemas to the `.astro` directory in your project. These files can be used by the Astro language server to provide Intellisense inside content files (`.md`, `.mdx`, `.mdoc`).
-
-Note that at this time, this also require enabling the `astro.content-intellisense` option in your editor, or passing the `contentIntellisense: true` initialization parameter to the Astro language server for editors using it directly.
-
-See the [experimental content Intellisense docs](https://docs.astro.build/en/reference/configuration-reference/#experimentalcontentintellisense) for more information updates as this feature develops.