fix: ajouter la configuration de déploiement dans Cloudflare et mettre à jour la configuration Nitro

This commit is contained in:
2025-12-18 14:02:39 +01:00
parent 8486095702
commit 2aa2be0c0a
2 changed files with 40 additions and 1 deletions

38
.github/cloudflare.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: Deploy to Cloudflare Workers
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
env:
NUXT_PUBLIC_I18N_BASE_URL: ${{ vars.NUXT_PUBLIC_I18N_BASE_URL }}
NUXT_API_URL: ${{ vars.NUXT_API_URL }}
STUDIO_GITHUB_CLIENT_ID: ${{ vars.STUDIO_GITHUB_CLIENT_ID }}
STUDIO_GITHUB_CLIENT_SECRET: ${{ vars.STUDIO_GITHUB_CLIENT_SECRET }}
- name: Publish to Cloudflare Workers
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: deploy

View File

@@ -102,7 +102,8 @@ export default defineNuxtConfig({
nitro: {
preset: 'cloudflare_module',
cloudflare: {
nodeCompat: true
nodeCompat: true,
deployConfig: true
},
prerender: {
routes: ['/'],