- Add package.json with dependencies for TanStack, HeroUI, and Vite. - Include favicon, logos, and manifest for PWA support. - Create global styles with Tailwind CSS and HeroUI. - Set up TypeScript configuration for the project. - Implement routing with TanStack Router and context for React Query. - Create root and index routes with basic application structure. - Add integration files for HeroUI and TanStack Query. - Configure Vite with necessary plugins for React and Tailwind CSS.
26 lines
498 B
JSON
26 lines
498 B
JSON
{
|
|
"short_name": "TanStack App",
|
|
"name": "Create TanStack App Sample",
|
|
"icons": [
|
|
{
|
|
"src": "favicon.ico",
|
|
"sizes": "64x64 32x32 24x24 16x16",
|
|
"type": "image/x-icon"
|
|
},
|
|
{
|
|
"src": "logo192.png",
|
|
"type": "image/png",
|
|
"sizes": "192x192"
|
|
},
|
|
{
|
|
"src": "logo512.png",
|
|
"type": "image/png",
|
|
"sizes": "512x512"
|
|
}
|
|
],
|
|
"start_url": ".",
|
|
"display": "standalone",
|
|
"theme_color": "#000000",
|
|
"background_color": "#ffffff"
|
|
}
|