Files
talk-pro/astro.config.mjs
TerryM c06d6bc3c3 feat: replace Tailwind with UnoCSS
Faster dev HMR, native Astro 6 support, same utility class names.
Tokens migrated to uno.config.ts.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-12 16:26:01 +08:00

7 lines
165 B
JavaScript

import { defineConfig } from 'astro/config';
import UnoCSS from '@unocss/astro';
export default defineConfig({
integrations: [UnoCSS({ injectReset: true })],
});