https://github.com/mustofa-id/sveltekit-form-snapshot-example
https://github.com/mustofa-id/sveltekit-form-snapshot-example
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/mustofa-id/sveltekit-form-snapshot-example
- Owner: mustofa-id
- Created: 2023-02-08T03:30:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-08T03:30:29.000Z (over 2 years ago)
- Last Synced: 2025-04-06T20:33:21.382Z (6 months ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SvelteKit Form Snapshot Example
Using SvelteKit [snapshot](https://kit.svelte.dev/docs/snapshots) feature with form
## 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
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.