Source code for my personal website https://bgenc.net
Find a file
2024-05-08 23:25:31 -05:00
src Fix some build issues 2024-05-08 23:25:31 -05:00
static Fix some build issues 2024-05-08 23:25:31 -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 New logo and updated stuff 2024-05-03 00:13:12 -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
package-lock.json Add color palettes and icons for the home page 2024-05-07 23:33:10 -05:00
package.json Add color palettes and icons for the home page 2024-05-07 23:33:10 -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.