Update README.md
All checks were successful
build

This commit is contained in:
Kevin Kandlbinder 2023-04-06 17:37:44 +02:00
parent 9387269592
commit d00c5854aa
Signed by: kevin
GPG key ID: 1460B586646E180D

View file

@ -4,13 +4,13 @@ This is the code for Public Spaces e.V. website, built on [SvelteKit](https://ki
## Developing ## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: Once you've created a project and installed dependencies with `yarn`, start a development server:
```bash ```bash
npm run dev yarn dev
# or start the server and open the app in a new browser tab # or start the server and open the app in a new browser tab
npm run dev -- --open yarn dev -- --open
``` ```
## Building ## Building
@ -18,9 +18,7 @@ npm run dev -- --open
To create a production version of your app: To create a production version of your app:
```bash ```bash
npm run build yarn build
``` ```
You can preview the production build with `npm run preview`. You can preview the production build with `yarn preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.