https://github.com/ysm-dev/solidstart-test
https://github.com/ysm-dev/solidstart-test
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ysm-dev/solidstart-test
- Owner: ysm-dev
- Created: 2023-01-01T13:40:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T13:40:29.000Z (over 3 years ago)
- Last Synced: 2025-03-12T03:24:40.862Z (over 1 year ago)
- Language: TypeScript
- Homepage: solidstart-test-ysm.vercel.app
- Size: 51.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SolidStart
This directory is a brief example of a [SolidStart](https://github.com/ryansolid/solid-start) site that can be deployed to Vercel with zero configuration.
## Deploy Your Own
Deploy your own SolidStart project with Vercel.
[](https://vercel.com/new/clone?repository-url=https://github.com/vercel/vercel/tree/main/examples/solidstart&template=solidstart)
_Live Example: https://solid-start-template.vercel.app_
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
This uses the [Vercel Adapter](https://github.com/solidjs/solid-start/tree/main/packages/start-vercel) for SolidStart.
```bash
npm run build
```