Skip to content

Latest commit

 

History

History
106 lines (71 loc) · 1.28 KB

README.md

File metadata and controls

106 lines (71 loc) · 1.28 KB

Personal Blog Frontend

个人博客前端项目,Nuxt3

todo:

  • 文章

    • 分页查询
    • 新增文章
    • 添加图片处理
    • 添加点赞
  • 分类

    • 编辑分类名称
    • 新增分类
    • 删除分类?(二次确认)
  • 标签

    • 编辑标签名称
    • 新增标签
    • 删除标签?(二次确认)
  • 数据库外放到docker外面,添加访问认证

  • log存到文件?

  • 生成目录

  • 添加访问统计

  • 添加rss订阅提醒

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.