blob: 33064eca47723d9773cf421ac27a44bcbb29d568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import Sitemap from 'vite-plugin-sitemap';
export default defineConfig({
plugins: [
react(),
tailwindcss(),
Sitemap({
hostname: "https://schererleander.de",
dynamicRoutes: [ "/", "/gear", "/projects", "/homelab", "/printing" ]
})
],
})
|