Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 414 Bytes

plenty-candles-help.md

File metadata and controls

21 lines (18 loc) · 414 Bytes
astro
major

Removes support for Shiki custom language's path property. The language JSON file should be imported and passed to the option instead.

// astro.config.js
+ import customLang from './custom.tmLanguage.json'

export default defineConfig({
  markdown: {
    shikiConfig: {
      langs: [
-       { path: './custom.tmLanguage.json' },
+       customLang,
      ],
    },
  },
})