font-explorer/client
2025-03-06 23:55:12 +01:00
..
src fix crash in json encoding 2025-03-06 23:55:12 +01:00
static add frontend project and docker containers 2025-03-05 13:47:59 +01:00
.gitignore add frontend project and docker containers 2025-03-05 13:47:59 +01:00
.npmrc add frontend project and docker containers 2025-03-05 13:47:59 +01:00
.prettierignore add frontend project and docker containers 2025-03-05 13:47:59 +01:00
.prettierrc add frontend project and docker containers 2025-03-05 13:47:59 +01:00
Dockerfile add hot reload to docker 2025-03-05 14:20:15 +01:00
eslint.config.js add frontend project and docker containers 2025-03-05 13:47:59 +01:00
package-lock.json add frontend project and docker containers 2025-03-05 13:47:59 +01:00
package.json add frontend project and docker containers 2025-03-05 13:47:59 +01:00
README.md add frontend project and docker containers 2025-03-05 13:47:59 +01:00
svelte.config.js add frontend project and docker containers 2025-03-05 13:47:59 +01:00
tsconfig.json add frontend project and docker containers 2025-03-05 13:47:59 +01:00
vite.config.ts add frontend project and docker containers 2025-03-05 13:47:59 +01: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.