vibe_theme_test
v0.0.0-beta.0
Published
vibe-theme-test | theme template with no config.
Maintainers
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 vibe-themeConfigure
import { defineConfig } from "astro/config";
import myTheme from "vibe-theme";
export default defineConfig({
integrations: [
myTheme({
config: {
title: "Hey!",
description: "This is my website!",
},
}),
],
});
