summaryrefslogtreecommitdiff
path: root/.changeset/modern-bears-deny.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/modern-bears-deny.md')
-rw-r--r--.changeset/modern-bears-deny.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/.changeset/modern-bears-deny.md b/.changeset/modern-bears-deny.md
deleted file mode 100644
index 876535a5c..000000000
--- a/.changeset/modern-bears-deny.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-'astro': major
----
-
-Makes the `compiledContent` property of Markdown content an async function, this change should fix underlying issues where sometimes when using a custom image service and images inside Markdown, Node would exit suddenly without any error message.
-
-```diff
----
-import * as myPost from "../post.md";
-
-- const content = myPost.compiledContent();
-+ const content = await myPost.compiledContent();
----
-
-<Fragment set:html={content} />
-```