feat: initialize Astro project with Tailwind and TypeScript
- Astro 5.0 with TypeScript strict mode - Tailwind CSS 3.4 configured with custom design system - Project structure created (components, layouts, content, styles) - Sitemap and RSS integrations added - Build verified successfully Fixes dependency conflict by using Astro 5 instead of 6
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
---
|
||||
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Astro</h1>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer base {
|
||||
body {
|
||||
@apply bg-background text-text-primary font-sans;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user