diff options
author | 2022-03-25 17:13:28 -0400 | |
---|---|---|
committer | 2022-03-25 17:13:28 -0400 | |
commit | 046bf7281f720b20b703529bc5d157891e07624c (patch) | |
tree | d16685fe8e65e5d1f9e71ad5cdc543819fb505a5 /packages/markdown/remark/src | |
parent | 7c39389a3fa69780ca16bbbf515b5718dd7688d8 (diff) | |
download | astro-046bf7281f720b20b703529bc5d157891e07624c.tar.gz astro-046bf7281f720b20b703529bc5d157891e07624c.tar.zst astro-046bf7281f720b20b703529bc5d157891e07624c.zip |
refactor: move Prism comp to default exp (#2887)
Diffstat (limited to 'packages/markdown/remark/src')
-rw-r--r-- | packages/markdown/remark/src/remark-prism.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/markdown/remark/src/remark-prism.ts b/packages/markdown/remark/src/remark-prism.ts index 549e09783..6d3e4e664 100644 --- a/packages/markdown/remark/src/remark-prism.ts +++ b/packages/markdown/remark/src/remark-prism.ts @@ -1,6 +1,6 @@ import { visit } from 'unist-util-visit'; import Prism from 'prismjs'; -import { addAstro } from '@astrojs/prism'; +import { addAstro } from '@astrojs/prism/internal'; import loadLanguages from 'prismjs/components/index.js'; const noVisit = new Set(['root', 'html', 'text']); |