ci: 为workflow添加代理检测 #32

Manually merged
remilia merged 2 commits from ci/proxy into master 2025-09-27 10:59:18 +08:00
Showing only changes of commit 6095fa47d4 - Show all commits

View File

@ -29,6 +29,15 @@ export default defineNuxtConfig({
: process.env.MEILI_SEARCH_INDEXES
: ['production', 'solution'],
},
strapi: {
url: process.env.STRAPI_URL || 'http://localhost:1337',
token: process.env.STRAPI_TOKEN || undefined,
prefix: '/api',
admin: '/admin',
version: 'v5',
cookie: {},
cookieName: 'strapi_jwt',
},
},
},
@ -104,16 +113,6 @@ export default defineNuxtConfig({
langDir: 'locales',
},
strapi: {
url: process.env.STRAPI_URL || 'http://localhost:1337',
token: process.env.STRAPI_TOKEN || undefined,
prefix: '/api',
admin: '/admin',
version: 'v5',
cookie: {},
cookieName: 'strapi_jwt',
},
imports: {
dirs: ['types/**'],
},