summaryrefslogtreecommitdiff
path: root/.changeset/two-hounds-sort.md
diff options
context:
space:
mode:
authorGravatar Fred K. Bot <108291165+fredkbot@users.noreply.github.com> 2022-07-26 06:58:38 -0700
committerGravatar GitHub <noreply@github.com> 2022-07-26 09:58:38 -0400
commitd790eabd986decc380088e52a4dcbff246ee736f (patch)
treef4fb19e33f32cea242349b2813551bc417f00fe9 /.changeset/two-hounds-sort.md
parentc7e117ce32592c9c29d24583baa10009e620bcc4 (diff)
downloadastro-@astrojs/cloudflare@0.3.0.tar.gz
astro-@astrojs/cloudflare@0.3.0.tar.zst
astro-@astrojs/cloudflare@0.3.0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
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,
- }
-});
-```