mirror of
https://github.com/dathere/qsvpro.dathere.com.git
synced 2025-12-18 13:49:25 +00:00
8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import react from "@astrojs/react";
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
export default defineConfig({
|
|
site: "https://qsvpro.dathere.com",
|
|
integrations: [react(), tailwind()],
|
|
});
|