shadcn-vue/packages/cli/test/fixtures/nuxt
2024-11-08 12:02:19 +08:00
..
assets/css chore: update deps and fix tailwindcss for charts reproductions (#596) 2024-06-09 09:15:46 +03:30
components/ui refactor: radix-vue to reka-ui 2024-11-04 18:19:28 +08:00
lib chore: lint, fix frozen lockfile 2023-12-01 11:36:12 +08:00
.gitignore chore: add nuxt fixtures 2023-09-18 23:43:36 +08:00
.npmrc chore: add nuxt fixtures 2023-09-18 23:43:36 +08:00
app.vue fix: nuxt config 2023-09-19 00:30:11 +08:00
components.json fix: nuxt config 2023-09-19 00:30:11 +08:00
nuxt.config.ts fix: nuxt config 2023-09-19 00:30:11 +08:00
package.json chore: bump reka version 2024-11-08 12:02:19 +08:00
README.md chore: add nuxt fixtures 2023-09-18 23:43:36 +08:00
tailwind.config.js refactor: perform migration 2024-11-05 07:12:04 +08:00
tsconfig.json chore: add nuxt fixtures 2023-09-18 23:43:36 +08:00

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the 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 run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.