- SvelteKit minimal template with TypeScript - Tailwind CSS v4 with @tailwindcss/vite plugin - ESLint and Prettier for code quality - Dependencies: better-sqlite3, drizzle-orm, nanoid, zod - Dev server runs on localhost:5173
12 lines
286 B
HTML
12 lines
286 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|