identity/identity-web
2024-06-15 21:58:23 +02:00
..
src checkpoint 7 2024-06-15 21:58:23 +02:00
static Checkpoint #1 2024-06-13 22:00:45 +02:00
.editorconfig checkpoint 4 2024-06-15 10:15:22 +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 Checkpoint #1 2024-06-13 22:00:45 +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
package.json checkpoint 6 2024-06-15 17:37:15 +02:00
postcss.config.js Checkpoint #1 2024-06-13 22:00:45 +02:00
README.md Checkpoint #1 2024-06-13 22:00:45 +02:00
svelte.config.js Checkpoint #1 2024-06-13 22:00:45 +02:00
tailwind.config.js Checkpoint #1 2024-06-13 22:00:45 +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 checkpoint 6 2024-06-15 17:37:15 +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.