Cloudflare pages deploy API token auth Error (10000) help

here’s an additional data because it doesn’t let me “mention more than 2 users”.

I found the similar issue from the

community

but it does not resolve my problem.

My project is develop using astro framework with this config

// @ts-check
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';

import cloudflare from '@astrojs/cloudflare';

import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
  site: 'https://thap.site',
  integrations: [mdx(), sitemap()],

  adapter: cloudflare({
    imageService: "compile",
    platformProxy: {
      enabled: true
    }
  }),

  vite: {
    plugins: [tailwindcss()],
    resolve: {
      alias: import.meta.env.PROD ? {
        
      } : {}
    }
  },
})