2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-19 00:39:02 +00:00
iconify/iconify-icon-demo/sveltekit-demo
2023-12-28 10:11:54 +02:00
..
src Update demo packages 2022-09-08 09:16:41 +03:00
static Svelte and SvelteKit demo for web component 2022-05-14 17:04:24 +03:00
.gitignore Update dependencies in all web component demos 2022-09-07 22:45:59 +03:00
.npmrc Update dependencies in all web component demos 2022-09-07 22:45:59 +03:00
package.json chore: update svelte demo packages 2023-12-28 10:11:54 +02:00
README.md Update dependencies in all web component demos 2022-09-07 22:45:59 +03:00
svelte.config.js Update dependencies in all web component demos 2022-09-07 22:45:59 +03:00
tsconfig.json Update dependencies in all web component demos 2022-09-07 22:45:59 +03:00
vite.config.ts Update dependencies in all web component demos 2022-09-07 22:45:59 +03:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

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:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.