Deprecated: This guide is for v1. See the v2 installation guide for the latest instructions.
# Create a new project
npm create astro@latest my-project
# Install shipyard (v1 packages)
npm install @levino/shipyard-base@1 @levino/shipyard-docs@1
# Start development
npm run dev
Create astro.config.mjs:
import shipyard from '@levino/shipyard-base'
export default defineConfig({
integrations: [
shipyard({
siteTitle: 'My Site', // Note: Changed to 'title' in v2
siteTagline: 'Welcome',
}),
],
})
v1 has some limitations addressed in v2: