mirror of
https://github.com/dathere/qsvpro.dathere.com.git
synced 2025-12-18 05:39:26 +00:00
12 lines
No EOL
286 B
JavaScript
12 lines
No EOL
286 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import react from "@astrojs/react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
site: "https://qsvpro.dathere.com",
|
|
integrations: [react(), tailwindcss()],
|
|
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
}); |