https://github.com/strawdynamics/dynamic-sharing-demo
https://github.com/strawdynamics/dynamic-sharing-demo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/strawdynamics/dynamic-sharing-demo
- Owner: strawdynamics
- Created: 2024-09-12T00:05:49.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T00:38:59.000Z (9 months ago)
- Last Synced: 2025-02-22T18:53:25.466Z (3 months ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dynamic-sharing-demo
Note that this can't be deployed directly to Netlify without some Custom Stuff™: https://answers.netlify.com/t/node-canvas-error-libuuid-so-1-cannot-open-shared-object-file-no-such-file-or-directory/30179
## 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.