mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
21 lines
444 B
JavaScript
21 lines
444 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
integrations: [react(), mdx()],
|
|
redirects: {
|
|
"/docs": "/docs/get-started/introduction",
|
|
"/docs/get-started": "/docs/get-started/introduction",
|
|
},
|
|
});
|