summaryrefslogtreecommitdiff
path: root/.changeset/plenty-candles-help.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/plenty-candles-help.md')
-rw-r--r--.changeset/plenty-candles-help.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/.changeset/plenty-candles-help.md b/.changeset/plenty-candles-help.md
deleted file mode 100644
index e7ddf8cb4..000000000
--- a/.changeset/plenty-candles-help.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-'astro': major
----
-
-Removes support for Shiki custom language's `path` property. The language JSON file should be imported and passed to the option instead.
-
-```diff
-// astro.config.js
-+ import customLang from './custom.tmLanguage.json'
-
-export default defineConfig({
- markdown: {
- shikiConfig: {
- langs: [
-- { path: './custom.tmLanguage.json' },
-+ customLang,
- ],
- },
- },
-})
-```