https://github.com/edward-brock/navigation
一个基于 Nuxt 4、Nuxt UI 3、Prisma 和 Better Auth 技术栈构建的个人导航站
https://github.com/edward-brock/navigation
better-auth nuxt nuxt-ui nuxt4 nuxtjs nuxtui prisma
Last synced: 13 days ago
JSON representation
一个基于 Nuxt 4、Nuxt UI 3、Prisma 和 Better Auth 技术栈构建的个人导航站
- Host: GitHub
- URL: https://github.com/edward-brock/navigation
- Owner: Edward-Brock
- License: mit
- Created: 2025-02-16T16:24:30.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-21T12:09:55.000Z (10 months ago)
- Last Synced: 2025-03-21T13:24:12.220Z (10 months ago)
- Topics: better-auth, nuxt, nuxt-ui, nuxt4, nuxtjs, nuxtui, prisma
- Language: Vue
- Homepage: https://nav.booop.net
- Size: 332 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Navigation
Look at [Nuxt docs](https://nuxt.com/docs/getting-started/introduction) and [Nuxt UI docs](https://ui.nuxt.com) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.