mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 05:26:39 +00:00
- Add TailwindCSS and DaisyUI for improved styling and theme support - Refactor global styles to use Tailwind and DaisyUI plugins - Update Header and Footer components for new design system - Remove unused Hamburger and Navigation components - Enhance BlogPost and Social components with new styles - Adjust BaseLayout and page templates for better structure - Update tsconfig for path alias support
13 lines
315 B
JavaScript
13 lines
315 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import vue from "@astrojs/vue";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://orbital-orbit.netlify.app",
|
|
integrations: [vue()],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
});
|