- Removed Tailwind CSS dependency (19KB → 8.7KB CSS) - Created native Astro CSS with CSS custom properties - All utility classes using vanilla CSS - Scoped component styles with Astro's built-in scoping - Same green theme and design preserved - Zero build dependencies for CSS - Faster builds, smaller bundle - True 'Astro way' of styling
8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: 'static',
|
|
});
|