首页 > web前端 > js教程 > 将 Vite React App 部署到 GitHub Pages 步骤:

将 Vite React App 部署到 GitHub Pages 步骤:

Mary-Kate Olsen
发布: 2025-01-05 22:52:40
原创
240 人浏览过

Deploy Vite React App to GitHub Pages tep:

初始化 Git,提交所有文件并将它们推送到您的新存储库:

第一步:

git init
git add -A
登录后复制

第二步:

git commit -m “第一次提交”
git 分支 -M main
git Remote add origin https://github.com/[username]/[repo_name].git # 替换为您的用户名和仓库 URL
git push -u origin main

第三步:

在 vite.config.ts 中设置基本路径

/ vite.config.ts
import { defineConfig } from “vite”;
import react from “@vitejs/plugin-react”;

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: “/vite-react-deploy/”, // YOUR REPO NAME HERE
});
登录后复制

第四步:

添加 GitHub 工作流程

在.github/workflows目录中创建一个deploy.yml文件。复制并粘贴此工作流程:

name: Deploy

on:
  push:
    branches:
      - main

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repo
        uses: actions/checkout@v3

      - name: Setup Node
        uses: actions/setup-node@v3

      - name: Install dependencies
        uses: bahmutov/npm-install@v1

      - name: Build project
        run: npm run build

      - name: Upload production-ready build files
        uses: actions/upload-artifact@v3
        with:
          name: production-files
          path: ./dist

  deploy:
    name: Deploy
    needs: build
    runs-on: ubuntu-latest
    if: github.ref == 'refs/heads/main'

    steps:
      - name: Download artifact
        uses: actions/download-artifact@v3
        with:
          name: production-files
          path: ./dist

      - name: Deploy to GitHub Pages
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./dist
登录后复制

在您的存储库页面上:

  • 1.转到设置 → 操作 → 常规,
  • 2.向下滚动到工作流程权限,
  • 3.选择读取和写入,然后保存:

重新运行操作:

操作 → 选择失败的部署 → 重新运行失败的作业。等待完成。

配置 GitHub 页面:

  • 前往设置 → 页面
  • 在“源”下,选择“从分支部署”并选择“gh-pages”分支。
  • 点击保存。

最重要的事情。

项目名称、链接名称(基值)或 Repo 名称大多数同名创建。

以上是将 Vite React App 部署到 GitHub Pages 步骤:的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板