🙆‍♀️

Vite + react で Github Pages にデプロイする方法

2024/01/22に公開

はじめに

vite + react を GithubPages でデプロイをする方法をまとめます

Github Pages の設定

github のレポジトリで Settings > GitHub Pages > Build and deployment > Branchにアクセス
ブランチ設定をmain /(root)に設定し、保存する

vite config の設定

vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react()],
  base: process.env.GITHUB_PAGES ? "レポジトリ名" : "./",
})

Github Acticons の yml ファイル

main.yml
name: deploy

on:
  push:
    branches: ['main']
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: 'pages'
  cancel-in-progress: true

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: 18
          # yarnのキャッシュを効かすために設定 (npmのかたはnpmで)
          cache: yarn
      - name: yarn install
        run: yarn install
      - name: yarn build
        run: yarn build
        # GIthubページは https://USERNAME.github.io/REPOSITORY_NAME/
        # となるので、envを追加してviteのベースパスを変えるように設定します。
        env:
          GITHUB_PAGES: true
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v1
        with:
          path: ./dist

  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    needs: build
    steps:
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v1

終わりに

まだ不十分なところがあると思いますので随時追記します

Discussion