-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathastro.config.ts
More file actions
21 lines (20 loc) · 619 Bytes
/
astro.config.ts
File metadata and controls
21 lines (20 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// https://astro.build/config
import vue from "@astrojs/vue";
import deno from "@deno/astro-adapter";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "astro/config";
import compress from "astro-compressor";
// https://astro.build/config
export default defineConfig({
site: "https://views.igorkowalczyk.dev",
redirects: {
"/github": "https://github.com/igorkowalczyk/views",
"/docs": "https://github.com/IgorKowalczyk/github-views?tab=readme-ov-file#-basic-usage",
},
output: "server",
adapter: deno(),
integrations: [vue(), compress()],
vite: {
plugins: [tailwindcss()],
},
});