storage/web
2025-04-14 22:41:28 -05:00
..
messages Initial 2 2025-04-14 16:25:04 -05:00
project.inlang Initial 2 2025-04-14 16:25:04 -05:00
src Add static 2025-04-14 22:41:28 -05:00
static Initial 2 2025-04-14 16:25:04 -05:00
.gitignore Initial 2 2025-04-14 16:25:04 -05:00
package.json more frontend work 2025-04-14 19:15:16 -05:00
README.md Initial 2 2025-04-14 16:25:04 -05:00
svelte.config.js Initial 2 2025-04-14 16:25:04 -05:00
tsconfig.json Initial 2 2025-04-14 16:25:04 -05:00
vite.config.ts Switch to server side templating 2025-04-14 21:32:49 -05:00
vitest-setup-client.ts Initial 2 2025-04-14 16:25:04 -05:00
yarn.lock more frontend work 2025-04-14 19:15:16 -05: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 in the current directory
npx sv create

# create a new project in my-app
npx sv create 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.