No description
  • Svelte 83.4%
  • CSS 8.1%
  • TypeScript 2.3%
  • HTML 2.1%
  • SCSS 2%
  • Other 2.1%
Find a file
2026-01-21 16:49:24 +01:00
.vscode
src feat: Azure oauth2 callback 2026-01-21 16:49:24 +01:00
static
.dockerignore
.env.example
.eslintignore
.eslintrc.cjs
.gitignore
.gitlab-ci.yml
.npmrc
.prettierignore
.prettierrc
Dockerfile
output.yaml
package.json
pnpm-lock.yaml
pnpm-workspace.yaml
postcss.config.js
README.md
redeploy.bash fix: Wrong oauth url 2026-01-08 17:44:25 +01:00
svelte.config.js
tailwind.config.js
tsconfig.json
vite.config.ts

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.