diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..829680c --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,44 @@ +name: Deploy to GitHub Pages + +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: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - run: npm ci + + - run: npm run build + + - uses: actions/upload-pages-artifact@v3 + with: + path: out + + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index 210e730..72a62b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ +session-state +settings.local.json +plans + + + # dependencies /node_modules /.pnp diff --git a/next.config.mjs b/next.config.mjs index 63cd69b..5ebb000 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,12 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: "export", images: { - remotePatterns: [ - { - protocol: "https", - hostname: "ddragon.leagueoflegends.com", - }, - ], + unoptimized: true, }, };