Foxnouns.NET/Foxnouns.Frontend
2024-12-18 21:26:17 +01:00
..
.vscode you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
src feat(frontend): report profile page 2024-12-18 21:26:17 +01:00
static fix: favicon 2024-12-11 20:43:55 +01:00
.dockerignore feat: docker config for new frontend 2024-12-09 18:04:56 +01:00
.env.example feat: so much more frontend stuff 2024-11-24 22:19:53 +01:00
.gitignore you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
.npmrc you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
.prettierignore feat: add icon list generation script 2024-11-27 20:00:28 +01:00
.prettierrc you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
Dockerfile feat: docker config for new frontend 2024-12-09 18:04:56 +01:00
eslint.config.js fix: fix all eslint errors 2024-12-14 00:46:27 +01:00
icons.js feat: add icon list generation script 2024-11-27 20:00:28 +01:00
package.json chore: update svelte 2024-12-18 02:53:06 +01:00
pnpm-lock.yaml chore: update svelte 2024-12-18 02:53:06 +01:00
README.md you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
svelte.config.js you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
tsconfig.json you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
vite.config.ts you know what let's just change frontend framework again 2024-11-24 15:55:47 +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.