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>
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import UnoCSS from '@unocss/astro';
|
|
|
|
export default defineConfig({
|
|
integrations: [UnoCSS({ injectReset: true })],
|
|
});
|