mirror of
https://github.com/veeso/termscp.git
synced 2026-07-12 02:41:32 +02:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
export default defineConfig({
|
|
site: "https://termscp.rs",
|
|
integrations: [sitemap()],
|
|
vite: { plugins: [tailwindcss()] },
|
|
});
|