A simple landing page create in Svelte
  • Svelte 49.7%
  • JavaScript 35.3%
  • HTML 5.7%
  • TypeScript 5.3%
  • Dockerfile 3.6%
  • Other 0.4%
Find a file
2026-04-22 20:22:06 +02:00
.vscode init: Basic concept of the site 2026-04-22 20:06:51 +02:00
src fix: Better padding on smaller devices 2026-04-22 20:22:06 +02:00
static init: Basic concept of the site 2026-04-22 20:06:51 +02:00
.gitignore init: Basic concept of the site 2026-04-22 20:06:51 +02:00
.npmrc init: Basic concept of the site 2026-04-22 20:06:51 +02:00
.prettierignore init: Basic concept of the site 2026-04-22 20:06:51 +02:00
.prettierrc init: Basic concept of the site 2026-04-22 20:06:51 +02:00
Dockerfile feat: Add simple docker container 2026-04-22 20:15:54 +02:00
eslint.config.js init: Basic concept of the site 2026-04-22 20:06:51 +02:00
package-lock.json feat: Create a static build 2026-04-22 20:12:28 +02:00
package.json feat: Create a static build 2026-04-22 20:12:28 +02:00
README.md init: Basic concept of the site 2026-04-22 20:06:51 +02:00
svelte.config.js feat: Create a static build 2026-04-22 20:12:28 +02:00
tsconfig.json init: Basic concept of the site 2026-04-22 20:06:51 +02:00
vite.config.ts init: Basic concept of the site 2026-04-22 20:06:51 +02:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

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

# create a new project
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
npx sv@0.15.1 create --template minimal --types ts --add prettier tailwindcss="plugins:none" eslint --install npm .

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.