### README Markdown Source: https://ui3.nuxt.com/getting-started/typography Provides setup, development, and production instructions for a Nuxt 3 starter project. Includes commands for dependency installation, running the development server, and building for production. ```markdown # Nuxt 3 Minimal Starter Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) 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 ``` -------------------------------- ### Start Nuxt development server Source: https://ui3.nuxt.com/getting-started/installation/pro/vue Navigate into your project directory and run this command to start the Nuxt development server. ```bash cd npm run dev ``` -------------------------------- ### Nuxt Configuration Example Source: https://ui3.nuxt.com/getting-started/typography Example of how to configure the code component's styles within your Nuxt application. ```APIDOC ## Nuxt Configuration Example ### Description This example demonstrates how to integrate and configure the code component's styling within your `nuxt.config.ts` file. ### File `nuxt.config.ts` ### Code ```typescript export default defineAppConfig({ uiPro: { prose: { code: { base: 'px-1.5 py-0.5 text-sm font-mono font-medium rounded-md inline-block', variants: { color: { primary: 'border border-primary/25 bg-primary/10 text-primary', secondary: 'border border-secondary/25 bg-secondary/10 text-secondary', success: 'border border-success/25 bg-success/10 text-success', info: 'border border-info/25 bg-info/10 text-info', warning: 'border border-warning/25 bg-warning/10 text-warning', error: 'border border-error/25 bg-error/10 text-error', neutral: 'border border-muted text-highlighted bg-muted' } }, defaultVariants: { color: 'neutral' } } } } }) ``` ``` -------------------------------- ### Installation using Package Managers Source: https://ui3.nuxt.com/getting-started/installation/nuxt Instructions for installing the Nuxt UI package using pnpm, yarn, npm, and bun. ```APIDOC ## Installation ### Add to a Nuxt project #### Install the Nuxt UI package **pnpm** ``` pnpm add @nuxt/ui@3 ``` **yarn** ``` yarn add @nuxt/ui@3 ``` **npm** ``` npm install @nuxt/ui@3 ``` **bun** ``` bun add @nuxt/ui@3 ``` If you're using **pnpm**, ensure that you either set `shamefully-hoist=true` in your `.npmrc` file or install `tailwindcss` in your project's root directory. ``` -------------------------------- ### Implement PageColumns with PageCard Source: https://ui3.nuxt.com/components/page-columns Example showing the setup of a data-driven list of testimonials rendered within a UPageColumns layout using UPageCard components. ```vue