Udem-Traning Nuxt & Tailwind
Go to file
Christian Kauer f3c136eb41 section 1&2 2024-01-02 14:38:33 +01:00
assets section 1&2 2024-01-02 14:38:33 +01:00
components section 1&2 2024-01-02 14:38:33 +01:00
html section 1&2 2024-01-02 14:38:33 +01:00
pages section 1&2 2024-01-02 14:38:33 +01:00
public section 1&2 2024-01-02 14:38:33 +01:00
server section 1&2 2024-01-02 14:38:33 +01:00
.gitignore section 1&2 2024-01-02 14:38:33 +01:00
README.md section 1&2 2024-01-02 14:38:33 +01:00
app.vue section 1&2 2024-01-02 14:38:33 +01:00
nuxt.config.ts section 1&2 2024-01-02 14:38:33 +01:00
package-lock.json section 1&2 2024-01-02 14:38:33 +01:00
package.json section 1&2 2024-01-02 14:38:33 +01:00
tailwind.config.js section 1&2 2024-01-02 14:38:33 +01:00
tsconfig.json section 1&2 2024-01-02 14:38:33 +01:00

README.md

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.