Skip to content

Latest commit

 

History

History
87 lines (59 loc) · 1.03 KB

README.md

File metadata and controls

87 lines (59 loc) · 1.03 KB

About

Personal website built by Nuxt 3

English | 简体中文

effect

Home page

Home page

Article details

Article details

Development

Tip

Node version >= 18

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

# npm
npm install
npm run dev

# pnpm
pnpm install
pnpm run dev

# yarn
yarn install
yarn 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

docker Deployment

# Build an image
docker build -t my-nuxt-app .
# Run container
docker run -d -p 3000:3000 --name my-running-nuxt-app my-nuxt-app
# View the running container
docker ps
# View all containers
docker ps -a

License

MIT © haohaitao