1
0
My website
Go to file
2024-08-15 14:57:06 +03:00
.vscode refactor: yay fixed stuffs 2024-08-08 04:46:38 +03:00
src fix: improve opengraph tags 2024-08-15 14:57:06 +03:00
static feat: omg everything is here! 2024-08-15 00:43:18 +03:00
.gitignore build: add nix 2024-08-15 12:28:51 +03:00
.npmrc feat: omg everything is here! 2024-08-15 00:43:18 +03:00
.prettierignore chore: init svelte project 2024-07-11 15:51:49 +03:00
.prettierrc chore: init svelte project 2024-07-11 15:51:49 +03:00
bun.lockb feat: omg everything is here! 2024-08-15 00:43:18 +03:00
eslint.config.js chore: init svelte project 2024-07-11 15:51:49 +03:00
flake.lock build: add nix 2024-08-15 12:28:51 +03:00
flake.nix build: add nix 2024-08-15 12:28:51 +03:00
LICENSE Change LICENSE to MIT 2020-10-02 15:16:31 +00:00
package.json feat: omg everything is here! 2024-08-15 00:43:18 +03:00
postcss.config.js feat: get basic version posts index etc working 2024-08-08 03:33:36 +03:00
README.md chore: init svelte project 2024-07-11 15:51:49 +03:00
svelte.config.js build: use static adapter 2024-08-15 12:32:08 +03:00
tailwind.config.js feat: omg everything is here! 2024-08-15 00:43:18 +03:00
tsconfig.json chore: init svelte project 2024-07-11 15:51:49 +03:00
vite.config.ts chore: init svelte project 2024-07-11 15:51:49 +03: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.