ff92be637f
* add "astro preview" command * Update green-buttons-reflect.md * Update cli-reference.md |
||
---|---|---|
.. | ||
public | ||
src | ||
.gitignore | ||
.npmrc | ||
astro.config.mjs | ||
package.json | ||
README.md | ||
tsconfig.json |
Using Solid with Astro
This example showcases Astro's built-in support for Solid.
Installation
Automatic
Bootstrap your Astro project with this template!
npm init astro --template framework-solid
Manual
To use Solid components in your Astro project:
-
Install
@astrojs/renderer-solid
npm i @astrojs/renderer-solid
-
Add
"@astrojs/renderer-solid"
to yourrenderers
inastro.config.mjs
.export default { renderers: [ "@astrojs/renderer-solid", // optionally, others... ] }
Usage
Write your Solid components as .jsx
or .tsx
files in your project.