7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { defineConfig } from "astro/config";
|
|
import UnoCSS from "unocss/astro";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [UnoCSS()],
|
|
});
|