identity/identity-web
2024-06-30 18:26:40 +02:00
..
src fix heirs 2024-06-30 18:26:40 +02:00
static Checkpoint #1 2024-06-13 22:00:45 +02:00
.editorconfig checkpoint 4 2024-06-15 10:15:22 +02:00
.env.example cleanup and docs and landing 2024-06-29 18:32:27 +02:00
.gitattributes checkpoint 4 2024-06-15 10:15:22 +02:00
.gitignore checkpoint 2 2024-06-13 23:14:20 +02:00
.npmrc Checkpoint #1 2024-06-13 22:00:45 +02:00
.prettierignore Checkpoint #1 2024-06-13 22:00:45 +02:00
.prettierrc cleanup and docs and landing 2024-06-29 18:32:27 +02:00
.yarnrc.yml checkpoint 2 2024-06-13 23:14:20 +02:00
eslint.config.js Checkpoint #1 2024-06-13 22:00:45 +02:00
LICENSE licensing 2024-06-29 19:12:12 +02:00
package.json licensing 2024-06-29 19:12:12 +02:00
postcss.config.js cleanup and docs and landing 2024-06-29 18:32:27 +02:00
README.md Checkpoint #1 2024-06-13 22:00:45 +02:00
svelte.config.js cleanup and docs and landing 2024-06-29 18:32:27 +02:00
tailwind.config.js cleanup and docs and landing 2024-06-29 18:32:27 +02:00
tsconfig.json Checkpoint #1 2024-06-13 22:00:45 +02:00
vite.config.ts Checkpoint #1 2024-06-13 22:00:45 +02:00
yarn.lock cleanup and docs and landing 2024-06-29 18:32:27 +02: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.