Skip to content

hexadecimal233/homepage

Repository files navigation

Nuxt 3 Personal Homepage

Learning Vue & Nuxt.js ~

Project Structure

Learning Nuxt.js so I'll take it down

- /
  ├─ assets (static files)
  ├─ components (vue components)
  ├─ layouts (vue layouts)
  ├─ pages (nuxt routed pages)
  ├─ public (public files under "/")
  ├─ server (server-side scripts)

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

pnpm install

Development Server

Start the development server on http://localhost:3000:

pnpm run dev

Production

Build the application for production:

pnpm run build

Locally preview production build:

pnpm run preview

Check out the deployment documentation for more information.