/examples/framework-vue/src/pages/

id='cgit'>
summaryrefslogtreecommitdiff
path: root/examples/portfolio (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-07-21[ci] formatastro@0.0.0-rc-20220722032928@astrojs/vue@0.0.0-rc-20220722032928@astrojs/vercel@0.0.0-rc-20220722032928@astrojs/tailwind@0.0.0-rc-20220722032928@astrojs/svelte@0.0.0-rc-20220722032928@astrojs/sitemap@0.0.0-rc-20220722032928@astrojs/prefetch@0.0.0-rc-20220722032928@astrojs/partytown@0.0.0-rc-20220722032928@astrojs/node@0.0.0-rc-20220722032928@astrojs/netlify@0.0.0-rc-20220722032928@astrojs/mdx@0.0.0-rc-20220722032928@astrojs/markdown-remark@0.0.0-rc-20220722032928@astrojs/markdown-component@0.0.0-rc-20220722032928@astrojs/lit@0.0.0-rc-20220722032928@astrojs/image@0.0.0-rc-20220722032928@astrojs/deno@0.0.0-rc-20220722032928@astrojs/cloudflare@0.0.0-rc-20220722032928Gravatar bholmesdev 2-21/+23
2022-07-21Fix: use `set:html` when markdown mode is `md` (#4008)Gravatar Ben Holmes 11-13/+143
* refactor: add legacy.jsxInMarkdown flag to config * fix: use `set:html` when `markdown.mode` is 'md' * Revert "refactor: add legacy.jsxInMarkdown flag to config" This reverts commit 5572e8d9b33eb1e9168d221f22348d3b3cb4b29a. * fix: move `remarkUnwrap, remarkEscape` to MDX only * fix: only apply scary HTML passthroughs on MDX * fix: move all JSX-specific rehype plugins under `isMDX` * fix: "allowDangerousHtml" for md (required for Shiki) * fix: apply `set:html` for non-layouts too * test: JSX expressions, components, syntax highlighting * chore: changeset * fix: ignore "setup" and "components" in plain MD mode * refactor: create new fixture to avoid weird caching error * fix: dup package name * chore: update lock * fix: apply rehypeCollectHeaders to md
2022-07-21[ci] formatGravatar bholmesdev 3-26/+24
2022-07-21[MDX] Add Prism and Shiki support (#4002)Gravatar Ben Holmes 11-22/+339
* deps: add rehype-prism, shiki, rehype-pretty-code * wip: apply rehype plugins depending on config * wip: cherry-pick jsx-runtime fix? * deps: rehype-pretty-code -> shiki-twoslash, add rehype-raw * wip: add jsx-runtime fix * feat: get shiki working! * deps: add @astrojs/prism, prismjs, unist-util-visit * feat: add prism support * example: add small syntax highlight demo to with-mdx * deps: remove rehype-prism * chore: remove unused async * chore: add .test.js to all mdx tests * test: shiki, shikiConfig, prism * fix: remove "is:raw" from prism output * docs: add syntax highlighting section * chore: add changeset * nit: "Shiki config" -> Shiki config Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Revert "wip: add jsx-runtime fix" This reverts commit 07f4528f449281afb7bbc154b09292244795a183. * docs: link to integration README from example Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2022-07-21[ci] formatGravatar natemoo-re 1-1/+4
2022-07-21fix: provide hint for undefined exports (#4003)Gravatar Nate Moore 1-1/+3
Co-authored-by: Nate Moore <nate@astro.build>
2022-07-21[ci] formatGravatar matthewp 7-16/+17
2022-07-21Replace/Rename Astro.canonicalURL with new Astro.url helper (#3959)Gravatar Fred K. Schott 35-117/+101
* add Astro.url * Add examples of how to create the canonicalURL Co-authored-by: Matthew Phillips <matthew@skypack.dev>
2022-07-21Fixes using tsconfig to set aliases (#4010)Gravatar Matthew Phillips 9-4/+102
2022-07-21[ci] formatGravatar natemoo-re 1-52/+52
2022-07-21fix: better dev routing with base using middleware (#3942)Gravatar Allan Chain 8-42/+157
2022-07-21[READMEs] removed "experimental" from astro add instructions (#4004)Gravatar Sarah Rainsberger 6-5/+14
2022-07-21[ci] formatGravatar natemoo-re 1-2/+6
2022-07-21Support objects for `style` attribute (#3776)Gravatar Nate Moore 2-2/+15
* feat: support style objects * chore: update jsx types * feat: support className for better JSX compat Co-authored-by: Nate Moore <nate@astro.build>
2022-07-21[ci] formatGravatar matthewp 1-5/+1
2022-07-21Make the Lit integration be compat with Vite 3.0.1 (#4009)Gravatar Matthew Phillips 4-11/+15
* Make the Lit integration be compat with Vite 3.0.1 * Changeset * Pin Vite version * Update lockfile
2022-07-21[ci] formatastro@0.0.0-rc-20220721064837@astrojs/vue@0.0.0-rc-20220721064837@astrojs/vercel@0.0.0-rc-20220721064837@astrojs/svelte@0.0.0-rc-20220721064837@astrojs/node@0.0.0-rc-20220721064837@astrojs/netlify@0.0.0-rc-20220721064837@astrojs/mdx@0.0.0-rc-20220721064837@astrojs/markdown-component@0.0.0-rc-20220721064837@astrojs/image@0.0.0-rc-20220721064837@astrojs/deno@0.0.0-rc-20220721064837@astrojs/cloudflare@0.0.0-rc-20220721064837Gravatar bholmesdev 2-18/+20
2022-07-20[MDX] Support YAML frontmatter (#3995)Gravatar Ben Holmes 11-13/+348
* chore: remove old comment * deps: add remark-frontmatter * deps: add remark-mdx-frontmatter * fix: handle null or undefined frontmatter key * feat: configure frontmatter plugins with defaults * test: frontmatter and custom frontmatter name * docs: add frontmatterOptions config * docs: add "variables" and "frontmatter" docs * chore: excessible -> accessible * chore: changeset * chore: remove bad mdx comment
2022-07-20Properly support and type optional props in Svelte components (#3993)Gravatar Erika 2-6/+9
* Properly support and type optional props in Svelte components * Change output to support documentating components * Add changeset
2022-07-20[ci] formatGravatar FredKSchott 1-1/+1
2022-07-20Update snapshot release instructionsGravatar Fred K. Schott 1-9/+16
2022-07-20Updates SSR routing to always give priority to public assets (#4000)Gravatar Tony Sullivan 4-0/+20
* matchRoute should ignore requests for public assets * chore: add changeset
2022-07-20[ci] formatGravatar matthewp 2-5/+6
2022-07-20Move the Markdown component to its own package (#3986)Gravatar Matthew Phillips 116-719/+1392
* Move the Markdown component to its own package * Update the examples * Updated lockfile * Use is:raw * Add a main field * Update the formatting of the readme * Rename to @astrojs/markdown-component
2022-07-20[ci] formatGravatar matthewp 1-2/+1
2022-07-20Removes warnings / flags for integrations and ssr (#3992)Gravatar Matthew Phillips 8-102/+8