Source code for my personal website https://bgenc.net
Find a file
Kaan Barmore-Genç 7d93c9d88b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fix Pagefind not loading
2024-05-17 23:02:18 -05:00
.vscode Add "Making Customizable Components in Svelte" 2024-05-12 12:52:39 -05:00
src Fix Pagefind not loading 2024-05-17 23:02:18 -05:00
static Some minor cleanup 2024-05-11 22:12:35 -05:00
.eslintignore start 2023-11-18 11:09:07 -06:00
.eslintrc.cjs start 2023-11-18 11:09:07 -06:00
.gitattributes Not sure what I did 2023-11-24 17:46:48 -06:00
.gitignore start 2023-11-18 11:09:07 -06:00
.npmrc start 2023-11-18 11:09:07 -06:00
.nvmrc Prep for deploy 2024-05-09 22:44:02 -05:00
.prettierignore start 2023-11-18 11:09:07 -06:00
.prettierrc Implement pagination, update the logo again 2024-05-05 23:53:42 -05:00
.woodpecker.yml Add missing manual event 2024-05-09 22:58:42 -05:00
package-lock.json Implement pagefind 2024-05-09 22:33:58 -05:00
package.json Prep for deploy 2024-05-09 22:44:02 -05:00
README.md start 2023-11-18 11:09:07 -06:00
svelte.config.js Ugh 2023-12-23 13:13:16 -06:00
tsconfig.json start 2023-11-18 11:09:07 -06:00
vite.config.ts images and stuff 2023-11-18 12:19:29 -06: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.