From 25289db76fe745cc12f7231a9ab94e31d1f18b20 Mon Sep 17 00:00:00 2001 From: Thiritin Date: Thu, 18 Jul 2024 00:02:10 +0200 Subject: [PATCH] fix build --- .github/workflows/bump.yml | 46 -------------------------------------- vite.config.js | 1 + 2 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 .github/workflows/bump.yml diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml deleted file mode 100644 index 3e058cf..0000000 --- a/.github/workflows/bump.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Check & deploy API documentation -permissions: - contents: read - pull-requests: write -on: - push: - branches: - - main - - master - pull_request: - branches: - - main - - master -jobs: - deploy-doc: - if: ${{ github.event_name == 'push' }} - name: Deploy API documentation on Bump.sh - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Deploy API documentation - uses: bump-sh/github-action@v1 - with: - doc: addde5ba-6454-49ad-a591-c5d0c4cf456f - token: ${{secrets.BUMP_SH_TOKEN}} - file: openapi.yml - api-diff: - if: ${{ github.event_name == 'pull_request' }} - name: Check API diff on Bump.sh - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Comment pull request with API diff - uses: bump-sh/github-action@v1 - with: - doc: addde5ba-6454-49ad-a591-c5d0c4cf456f - token: ${{secrets.BUMP_SH_TOKEN}} - file: openapi.yml - command: diff - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - - diff --git a/vite.config.js b/vite.config.js index 5b64e7f..e788a44 100644 --- a/vite.config.js +++ b/vite.config.js @@ -3,6 +3,7 @@ import laravel from 'laravel-vite-plugin'; import vue from '@vitejs/plugin-vue'; export default defineConfig({ + assetsInclude: ['**/*.TTF'], plugins: [ laravel({ input: 'resources/js/app.js',