No description https://jeff-m.com
  • Svelte 74.9%
  • CSS 17.4%
  • JavaScript 3.4%
  • TypeScript 2.8%
  • HTML 1.5%
Find a file
Jeffrey Morris 6b4e956831
All checks were successful
Prettier Formatting Check / check-format (push) Successful in 1m54s
Vercel Production Deployment / deploy-production (push) Successful in 2m21s
Update prettier chat-op
2026-07-01 14:39:25 -05:00
.forgejo/workflows Update prettier chat-op 2026-07-01 14:39:25 -05:00
src Fix prettier styling (#6) 2026-07-01 14:30:08 -05:00
static projects-page (#2) 2026-06-30 14:59:49 -05:00
.gitignore Remove .vscode dir 2026-07-01 14:34:30 -05:00
.npmrc Initial commit 2026-06-25 16:14:13 -05:00
.prettierignore prettier-action (#5) 2026-07-01 14:18:23 -05:00
.prettierrc Initial commit 2026-06-25 16:14:13 -05:00
eslint.config.js Initial commit 2026-06-25 16:14:13 -05:00
package.json Add vercel setup (#1) 2026-06-26 00:21:20 -05:00
pnpm-lock.yaml Add vercel setup (#1) 2026-06-26 00:21:20 -05:00
README.md Initial commit 2026-06-25 16:14:13 -05:00
tsconfig.json Initial commit 2026-06-25 16:14:13 -05:00
vite.config.ts Add vercel setup (#1) 2026-06-26 00:21:20 -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
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
pnpm dlx sv@0.16.1 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography" mdsvex --install pnpm svelte-portfolio

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.