Go to file
2024-11-11 22:30:03 +02:00
src Add Category interface to $lib/entities.ts 2024-11-11 22:30:03 +02:00
static Some state with basic Login page 2024-11-02 14:25:25 +02:00
.gitignore Some state with basic Login page 2024-11-02 14:25:25 +02:00
.npmrc Some state with basic Login page 2024-11-02 14:25:25 +02:00
package-lock.json Add @types/node as save-dev 2024-11-08 17:12:08 +02:00
package.json Add @types/node as save-dev 2024-11-08 17:12:08 +02:00
postcss.config.js Some state with basic Login page 2024-11-02 14:25:25 +02:00
README.md Some state with basic Login page 2024-11-02 14:25:25 +02:00
svelte.config.js Some state with basic Login page 2024-11-02 14:25:25 +02:00
tailwind.config.ts Some state with basic Login page 2024-11-02 14:25:25 +02:00
tsconfig.json Some state with basic Login page 2024-11-02 14:25:25 +02:00
vite.config.ts Everything I have 2024-11-06 19:42:42 +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 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.