### Install Frontend Dependencies and Start Development Server Source: https://github.com/lenve/vblog/blob/master/README.md Navigates into the 'vueblog' directory, installs all necessary Node.js dependencies using npm, and then starts the development server. The frontend will be accessible at http://localhost:8080, with requests forwarded to the Spring Boot backend. ```npm # 安装依赖 npm install # 在 localhost:8080 启动项目 npm run dev ``` -------------------------------- ### Clone VBlog Project Repository Source: https://github.com/lenve/vblog/blob/master/README.md Clones the VBlog project repository from GitHub to your local machine using the Git command-line interface. This is the first step to set up the project locally. ```Git git@github.com:lenve/VBlog.git ``` -------------------------------- ### Build Frontend for Production Deployment Source: https://github.com/lenve/vblog/blob/master/README.md Executes the npm build command within the 'vueblog' directory to compile and optimize the Vue.js frontend for production. This generates a 'dist' folder containing static assets (static and index.html) ready to be copied into the Spring Boot project's resources/static/ directory for deployment. ```npm npm run build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.