summaryrefslogtreecommitdiff
path: root/.changeset/two-hounds-sort.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/two-hounds-sort.md')
-rw-r--r--.changeset/two-hounds-sort.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/.changeset/two-hounds-sort.md b/.changeset/two-hounds-sort.md
deleted file mode 100644
index b6be5ea04..000000000
--- a/.changeset/two-hounds-sort.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-'astro': minor
-'@astrojs/markdown-component': minor
-'@astrojs/markdown-remark': minor
----
-
-The use of components and JSX expressions in Markdown are no longer supported by default.
-
-For long term support, migrate to the `@astrojs/mdx` integration for MDX support (including `.mdx` pages!).
-
-Not ready to migrate to MDX? Add the legacy flag to your Astro config to re-enable the previous Markdown support.
-
-```js
-// https://astro.build/config
-export default defineConfig({
- legacy: {
- astroFlavoredMarkdown: true,
- }
-});
-```