6d06fce6d2
* `github.com/snowpackjs/astro/blob/main/docs/*.md` -> `docs.astro.build/*/` * convert links to docs site links * Fix broken links that didn't work w/ the regex. * Add changeset * Delete five-weeks-destroy.md Co-authored-by: Fred K. Schott <fkschott@gmail.com> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
.npmrc | ||
astro.config.mjs | ||
package.json | ||
README.md |
Kitchen Sink: Microfrontends with Astro
npm init astro --template framework-multiple
This example showcases Astro's built-in support for multiple frameworks (React, Preact, Svelte, and Vue (v3.x
)).
No configuration is needed to enable these frameworks—just start writing components in src/components
.
Note
: If used, components must include a JSX factory (ex.
import React from "react"
,import { h } from "preact"
). Astro is unable to determine which framework is used without having the JSX factory in scope.