No description
Find a file
SauceyRed 1e261d1a1b
All checks were successful
ci/woodpecker/push/build Pipeline was successful
feat: set custom title and description for homepage
2025-05-05 11:18:09 +02:00
.woodpecker ci: add when to build step 2025-05-05 03:13:09 +02:00
pages feat: set custom title and description for homepage 2025-05-05 11:18:09 +02:00
.gitignore chore: update .gitignore 2025-05-01 04:25:17 +02:00
app.config.ts feat: add nuxt configs 2025-05-01 04:29:03 +02:00
app.vue feat: add line beneath navbar 2025-05-01 05:02:39 +02:00
LICENSE Initial commit 2025-04-30 20:22:32 +00:00
nuxt.config.ts feat: add Discord embed color meta tag 2025-05-05 11:16:24 +02:00
package.json chore: add package files and Nuxt sconfig.json 2025-05-01 04:28:41 +02:00
pnpm-lock.yaml chore: add package files and Nuxt sconfig.json 2025-05-01 04:28:41 +02:00
pnpm-workspace.yaml chore: add package files and Nuxt sconfig.json 2025-05-01 04:28:41 +02:00
README.md docs: update README.md 2025-05-01 04:24:58 +02:00
tsconfig.json chore: add package files and Nuxt sconfig.json 2025-05-01 04:28:41 +02:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.