| name | no-build-css-systems |
| description | Use when avoiding build complexity. Vanilla CSS or Tailwind via CDN — no build step, deploys anywhere.
|
No-Build CSS Systems
No-build CSS = no Webpack/Vite/PostCSS. Two approaches: vanilla CSS with tokens, or Tailwind via CDN. Fastest deployment.
Vanilla CSS approach
Plain stylesheet linked from HTML:
<link rel='stylesheet' href='/styles.css'>
:root {
--cream: #fbf6ec;
--ink: #0d0807;
}
body {
background: var(--cream);
color: var(--ink);
font-family: 'Inter Tight', system-ui, sans-serif;
}
No build, no compilation. Just edit and deploy.
Tailwind via CDN (development only)
<script src='https://cdn.tailwindcss.com'></script>
Good for prototypes. Production needs build for tree-shaking.
Production Tailwind: use Tailwind CLI standalone (single binary, no Node) for build-time tree-shaking.
When no-build works
- Simple landing pages
- Single-page artifacts
- Prototypes
- Documentation sites
- Marketing pages
When you need build:
- Multi-page SPA (React/Vue)
- Component libraries
- JSX compilation
- Complex routing
- Server-side rendering
Where this fits in the X3 empire
Approach for CardPrepAI artifacts and simple marketing pages.