Udem-Traning Nuxt & Tailwind
Go to file
Christian Kauer 70828b1edd del pw 2024-01-04 19:22:46 +01:00
assets after section 8 2024-01-04 17:50:17 +01:00
components after section 8 2024-01-04 17:50:17 +01:00
composables after section 8 2024-01-04 17:50:17 +01:00
html section 1&2 2024-01-02 14:38:33 +01:00
layouts after section 3 2024-01-02 16:20:32 +01:00
middleware after section 7 2024-01-04 14:13:19 +01:00
pages del pw 2024-01-04 19:22:46 +01:00
public section 1&2 2024-01-02 14:38:33 +01:00
server after section 8 2024-01-04 17:50:17 +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 after section 3 2024-01-02 16:20:32 +01:00
error.vue end of section 4 2024-01-03 16:44:17 +01:00
nuxt.config.ts after section 7 2024-01-04 14:13:19 +01:00
package-lock.json after section 7 2024-01-04 14:13:19 +01:00
package.json after section 7 2024-01-04 14:13:19 +01:00
tailwind.config.ts after section 3 2024-01-02 16:20:32 +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.