https://github.com/p4r4d0xb0x/svelte
처음 프론트 해보면서 문서 작성까지 해보려는심보
https://github.com/p4r4d0xb0x/svelte
Last synced: 2 months ago
JSON representation
처음 프론트 해보면서 문서 작성까지 해보려는심보
- Host: GitHub
- URL: https://github.com/p4r4d0xb0x/svelte
- Owner: p4r4d0xb0x
- Created: 2022-12-17T06:53:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T14:34:23.000Z (over 2 years ago)
- Last Synced: 2025-03-18T05:17:53.222Z (2 months ago)
- Language: JavaScript
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SvelteKit Legacy Demo
[](https://github.com/Tal500/sveltekit-legacy-demo/actions/workflows/CI.yml)This is a demo for the proposed legacy support of SvelteKit, introduced in PR sveltejs/kit#6265.
This demo is based on `create-svelte`, and was addapted to support legacy browsers.
Currently it's tested manually only on IE11 (and works as well on modern browsers of course).
More info are in the referenced PR.
# Online Preview
An online demonstration is available at https://sveltekit-legacy-demo.pages.dev .
## Developing
Once you've cloned the 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.