@vibedesign/package
v0.0.1
Published
This is my awesome Astro theme created using [`astro-theme-provider`](https://github.com/astrolicious/astro-theme-provider)!
Readme
My Astro Theme!
This is my awesome Astro theme created using astro-theme-provider!
Install
- Create an empty Astro project:
pnpm create astro@latest my-website --template minimal -y- Add the theme to your project:
pnpm astro add my-themeConfigure
import { defineConfig } from 'astro/config'
import myTheme from 'my-theme'
export default defineConfig({
integrations: [
myTheme({
config: {
title: 'Hey!',
description: 'This is my website!',
},
}),
],
})