https://github.com/varkaria/jwc12
just a little project for jwc12 registration
https://github.com/varkaria/jwc12
Last synced: 2 months ago
JSON representation
just a little project for jwc12 registration
- Host: GitHub
- URL: https://github.com/varkaria/jwc12
- Owner: varkaria
- Created: 2022-06-12T13:52:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-12T15:04:23.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T02:27:32.144Z (4 months ago)
- Language: TypeScript
- Homepage: jwc12.vercel.app
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# solid-tailwind
Ready-to-develop template for SolidJS
## Features
- SolidJS dynamic routing
- Code-splitting
- Dynamic document `title`
- Preconfigured Tailwind compatible with Tailwind UI
- Examples for data fetching, dynamic routing## File structure
- `api`: Backend serverless functions served on Vercel
- `public`: Public directory to drop static files
- `src`: Frontned SolidJS part where magic happens
- `src/routes.ts`: All routes controlled in here
- `tools`: Set of utility to help you jump-start your project## Vercel configuration
```
# Build command
npx pnpm build# Output directory
dist# Install command
npx pnpm install -r --store=node_modules/.pnpm-store# Development command
pnpm vite-dev
```## Development
```
# With backend API
pnpm vercel-dev# Without backend API
pnpm vite-dev
```## Build
```
pnpm build
```