Installation
How to install dependencies and structure your app.Simple. Fast. Framework agnostic.
React 19
Next.js 14
TypeScript
Frameworks
Next.js
React framework with hybrid static & server rendering
Vite
Next Generation Frontend Tooling
Manual
Manual Installation
Astro
Framework for content-driven websites
Laravel
PHP web application framework
Gatsby
Framework for building static websites
TypeScript
This project is built with TypeScript and provides full type safety out of the box.
To opt-out of TypeScript, you can use the tsx flag in your components.json file.
{
"style": "default",
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app/globals.css",
"baseColor": "zinc",
"cssVariables": true
},
"rsc": false,
"tsx": false,
"aliases": {
"utils": "~/lib/utils",
"components": "~/components"
}
}
To configure import aliases, you can use the following jsconfig.json:
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
}
}
}