This is the frontend for HexName written in SvelteKit with Tailwind and DaisyUI https://hexname.com
Find a file
2026-01-31 17:07:38 +01:00
.vscode init commit 2026-01-05 17:39:59 +01:00
src feat: replaced blog visual with browser mockup 2026-01-31 17:07:38 +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.json fix: typo 2026-01-28 22:32:27 +01:00
deno.lock feat: fixed #links, static-adapter works 2026-01-29 19:56:23 +01:00
deps.nix feat: deno2nix deps output 2026-01-29 18:51:39 +01:00
eslint.config.js init commit 2026-01-05 17:39:59 +01:00
package.json feat: fixed #links, static-adapter works 2026-01-29 19:56:23 +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: fixed #links, static-adapter works 2026-01-29 19:56:23 +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.