Back to themes

Astro Vitesse, inspired by antfu.me

Build beautiful, accessible, high-performance blog websites with Astro


Cost

Free


Created by
Adrián UB

Vercel logo Deploy to Vercel

Install

npx astro add astro-vitesse

Usage

create a `uno.config.ts` file


import { defineConfig } from 'astro-vitesse/theme'

export default defineConfig({})


add unocss integration


import { defineConfig } from 'astro/config'
import vitesse from 'astro-vitesse'
import UnoCSS from 'unocss/astro'

// https://astro.build/config
export default defineConfig({
  integrations: [
    vitesse({
      title: 'My Awesome Site',
    }), 
    UnoCSS()
  ],
})