mirror of
https://github.com/veeso/termscp.git
synced 2026-07-21 07:14:02 +02:00
11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
// @ts-check
|
|
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()] },
|
|
});
|