Udem-Traning Nuxt & Tailwind
Go to file
Christian Kauer 7abf85c974 tailwind 2024-01-14 15:43:12 +01:00
.vscode tailwind 2024-01-14 15:43:12 +01:00
assets after section 8 2024-01-04 17:50:17 +01:00
components after section 12 2024-01-05 14:19:21 +01:00
composables after section 8 2024-01-04 17:50:17 +01:00
html tailwind 2024-01-14 15:43:12 +01:00
layouts tailwind 2024-01-14 15:43:12 +01:00
middleware after section 7 2024-01-04 14:13:19 +01:00
pages tailwind 2024-01-14 15:43:12 +01:00
prisma after section 12 2024-01-05 14:19:21 +01:00
public tailwind 2024-01-14 15:43:12 +01:00
server after section 12 2024-01-05 14:19:21 +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 12 2024-01-05 14:19:21 +01:00
package-lock.json after section 12 2024-01-05 14:19:21 +01:00
package.json after section 12 2024-01-05 14:19:21 +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.