11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { defineConfig } from "astro/config";
|
|
import UnoCSS from "unocss/astro";
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [UnoCSS({
|
|
injectReset: true
|
|
}), react()]
|
|
}); |