mirror of
https://github.com/jimeh/commonflow.org.git
synced 2026-02-19 05:46:40 +00:00
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
export default defineConfig({
|
|
site: "https://commonflow.org",
|
|
outDir: "./docs",
|
|
integrations: [sitemap()],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
});
|