mirror of
https://github.com/dathere/qsvpro.dathere.com.git
synced 2025-12-19 05:59:24 +00:00
9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import react from "@astrojs/react";
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
export default defineConfig({
|
|
site: "https://dathere.github.io",
|
|
base: "/qsv-pro-web",
|
|
integrations: [react(), tailwind()],
|
|
});
|