Go to file
Luke f15c0f7f89
Add suyu favicon
This replaces the default favicon with the suyu logomark.
2024-03-06 17:46:57 -05:00
src mayro odisy 2024-03-06 22:38:04 +00:00
static Add suyu favicon 2024-03-06 17:46:57 -05:00
.gitignore initial commit <3 2024-03-06 15:05:24 +00:00
.npmrc initial commit <3 2024-03-06 15:05:24 +00:00
.prettierignore initial commit <3 2024-03-06 15:05:24 +00:00
.prettierrc mayro odisy 2024-03-06 22:38:04 +00:00
package-lock.json mayro odisy 2024-03-06 22:38:04 +00:00
package.json mayro odisy 2024-03-06 22:38:04 +00:00
README.md initial commit <3 2024-03-06 15:05:24 +00:00
svelte.config.js mayro odisy 2024-03-06 22:38:04 +00:00
tsconfig.json initial commit <3 2024-03-06 15:05:24 +00:00
vite.config.ts initial commit <3 2024-03-06 15:05:24 +00:00

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.