This example showcases Astro's built-in support for Svelte.
Bootstrap your Astro project with this template!
npm init astro -- --template framework-svelte
To use Svelte components in your Astro project:
-
Install
@astrojs/renderer-svelte
npm i @astrojs/renderer-svelte
-
Add
"@astrojs/renderer-svelte"
to yourrenderers
inastro.config.mjs
.export default { renderers: [ "@astrojs/renderer-svelte", // optionally, others... ] }
Write your Svelte components as .svelte
files in your project.