Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/buhrmi/sveltekit-netlify-cms
A preconfigured SvelteKit skeleton app with Netlify CMS
https://github.com/buhrmi/sveltekit-netlify-cms
Last synced: 6 days ago
JSON representation
A preconfigured SvelteKit skeleton app with Netlify CMS
- Host: GitHub
- URL: https://github.com/buhrmi/sveltekit-netlify-cms
- Owner: buhrmi
- Created: 2021-09-02T03:55:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-09T14:29:26.000Z (over 2 years ago)
- Last Synced: 2024-08-02T17:35:27.864Z (3 months ago)
- Language: HTML
- Homepage: https://sveltekit-netlify-cms.netlify.app
- Size: 41 KB
- Stars: 59
- Watchers: 3
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-svelte-kit - SvelteKit with NetlifyCMS
README
# sveltekit-netlify-cms
A SvelteKit skeleton app with Netlify CMS living in `/admin`. Netlify CMS is configured to directly edit `/routes/*.md` files, which are preprocessed by [mdsvex](https://mdsvex.com).
[Demo](https://sveltekit-netlify-cms.netlify.app)
## Developing
Once you've downloaded this repo 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 the production version of your app, run:
```bash
npm run build
```> You can preview the built app with `npm run preview`. However, this should _not_ be used to serve your app in production.