### Run Development Server Source: https://github.com/withastro/server-islands/blob/main/README.md Starts the local development server for the Astro project. Access the demo at http://localhost:4321. ```sh pnpm run dev ``` -------------------------------- ### Install Dependencies Source: https://github.com/withastro/server-islands/blob/main/README.md Installs project dependencies using pnpm. Ensure you have Node.js and pnpm installed. ```sh pnpm install ``` -------------------------------- ### Astro Configuration Adapter Source: https://github.com/withastro/server-islands/blob/main/README.md Specifies the deployment adapter for Astro projects. This example is configured for Netlify but can be changed for other hosts. ```mjs import { defineConfig } from 'astro/config'; import netlifyAdapter from '@astrojs/netlify'; // https://astro.build/config export default defineConfig({ adapter: netlifyAdapter() }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.