refactor(all): shadcn rewrite

This commit is contained in:
z0x 2025-02-16 18:17:42 -05:00
parent a3c7945750
commit e111bdffb4
34 changed files with 1003 additions and 173 deletions

20
astro.config.ts Normal file
View file

@ -0,0 +1,20 @@
// @ts-check
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwindcss from '@tailwindcss/vite';
import umami from "@yeskunall/astro-umami";
// https://astro.build/config
export default defineConfig({
integrations: [
umami({
id: "343a00a4-7e34-4177-b07c-dce26ffc1b50",
endpointUrl: "https://umami.z0x.ca",
}),
react(),
],
vite: {
plugins: [tailwindcss()]
}
});