diff options
author | 2023-05-31 19:18:07 -0400 | |
---|---|---|
committer | 2023-05-31 19:18:07 -0400 | |
commit | 339529fc820bac2d514b63198ecf54a1d88c0917 (patch) | |
tree | 8b553c0df30c1aa60a037fb915bcf7fdfaea945f /examples/with-markdoc/src | |
parent | c4c086e5e70bdd347e1c7601212a04b4f523578e (diff) | |
download | astro-339529fc820bac2d514b63198ecf54a1d88c0917.tar.gz astro-339529fc820bac2d514b63198ecf54a1d88c0917.tar.zst astro-339529fc820bac2d514b63198ecf54a1d88c0917.zip |
Markdoc asset bleed, second try (#7185)
* Revert "revert: markdoc asset bleed (#7178)"
This reverts commit 57e65d247f67de61bcc3a585c2254feb61ed2e74.
* fix: missing result param on `renderUniqueStylesheet`
* test: bundled styles (fails!)
* fix: use `type: 'external'` for links
* fix: split Astro components from markdoc config
* test: style bleed (it fails...)
* chore: remove unused util
* fix: revert entry change
* Stop traversing the graph when you encounter a propagated asset
* chore: cleanup unused `entry` prop
* refactor: add isPropagatedAssetsMod check
* chore: remove unused import
* chore: changeset
* Normalize path using vite
* Update packages/integrations/markdoc/src/index.ts
Co-authored-by: Ben Holmes <hey@bholmes.dev>
---------
Co-authored-by: Matthew Phillips <matthew@skypack.dev>
Co-authored-by: bholmesdev <bholmesdev@gmail.com>
Co-authored-by: Matthew Phillips <matthew@matthewphillips.info>
Diffstat (limited to 'examples/with-markdoc/src')
-rw-r--r-- | examples/with-markdoc/src/content/config.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/with-markdoc/src/content/config.ts b/examples/with-markdoc/src/content/config.ts deleted file mode 100644 index 2eccab0a3..000000000 --- a/examples/with-markdoc/src/content/config.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { defineCollection, z } from 'astro:content'; - -const docs = defineCollection({ - schema: z.object({ - title: z.string(), - }), -}); - -export const collections = { docs }; |