shadcn-vue/packages/cli/test/fixtures/nuxt
2024-02-15 12:48:35 +01:00
..
assets/css feat: stackblitz/codesandbox editor (#130) 2023-10-21 21:21:46 +08:00
components/ui refactor: tailwindcss, remove all unnecessary arbitrary values, update TailwindCSS to v3.4 (#269) 2024-02-02 22:48:58 +03:30
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 radix-vue 2024-02-15 12:48:35 +01:00
README.md chore: add nuxt fixtures 2023-09-18 23:43:36 +08:00
tailwind.config.js fix: nuxt config 2023-09-19 00:30:11 +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.