This is the frontend for HexName written in SvelteKit with Tailwind and DaisyUI https://hexname.com
Find a file
Luka Dekanozishvili 115ed06370 fix: typo
2026-01-28 22:22:41 +01:00
.vscode init commit 2026-01-05 17:39:59 +01:00
src feat: new logo, fixed layout, misc 2026-01-25 17:44:58 +01:00
static init commit 2026-01-05 17:39:59 +01:00
.gitignore init commit 2026-01-05 17:39:59 +01:00
.npmrc init commit 2026-01-05 17:39:59 +01:00
deno.lock feat: added 5 blogs, refactored legals, fixed (side)menu behaviour, made pages uniform 2026-01-25 00:34:06 +01:00
eslint.config.js init commit 2026-01-05 17:39:59 +01:00
flake.nix fix: typo 2026-01-28 22:22:41 +01:00
package.json feat: added flake 2026-01-28 22:13:06 +01:00
README.md init commit 2026-01-05 17:39:59 +01:00
start_backend.sh init commit 2026-01-05 17:39:59 +01:00
svelte.config.js feat: added 5 blogs, refactored legals, fixed (side)menu behaviour, made pages uniform 2026-01-25 00:34:06 +01:00
tsconfig.json init commit 2026-01-05 17:39:59 +01:00
vite.config.ts feat: added 5 blogs, refactored legals, fixed (side)menu behaviour, made pages uniform 2026-01-25 00:34:06 +01: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 in the current directory
npx sv create

# create a new project in my-app
npx sv create 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.