Go to file
2023-04-30 06:18:53 +03:00
.vscode feat: init impl 2023-04-21 22:35:25 +03:00
src feat: add title to loop button 2023-04-30 06:18:53 +03:00
static feat: init impl 2023-04-21 22:35:25 +03:00
.envrc chore: add envrc and gitignore, make flake work 2023-04-12 07:21:16 +03:00
.eslintignore feat: init impl 2023-04-21 22:35:25 +03:00
.eslintrc.cjs feat: init impl 2023-04-21 22:35:25 +03:00
.gitignore feat: init impl 2023-04-21 22:35:25 +03:00
.npmrc feat: init impl 2023-04-21 22:35:25 +03:00
.prettierignore feat: init impl 2023-04-21 22:35:25 +03:00
.prettierrc feat: init impl 2023-04-21 22:35:25 +03:00
flake.lock chore: update flake 2023-04-12 11:09:04 +03:00
flake.nix feat: init impl 2023-04-21 22:35:25 +03:00
package.json feat: implement better track view, fix virtual list issue, implement icons 2023-04-23 07:06:52 +03:00
pnpm-lock.yaml feat: implement better track view, fix virtual list issue, implement icons 2023-04-23 07:06:52 +03:00
postcss.config.js feat: init impl 2023-04-21 22:35:25 +03:00
README.md feat: init impl 2023-04-21 22:35:25 +03:00
svelte.config.js feat: init impl 2023-04-21 22:35:25 +03:00
tailwind.config.js feat: init impl 2023-04-21 22:35:25 +03:00
tsconfig.json feat: init impl 2023-04-21 22:35:25 +03:00
vite.config.ts feat: implement better track view, fix virtual list issue, implement icons 2023-04-23 07:06:52 +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.