初始化

This commit is contained in:
2026-05-10 01:33:46 +08:00
parent 9e24153eac
commit 105ed4cbee
414 changed files with 87 additions and 53342 deletions

View File

@@ -8,11 +8,11 @@ function joinURL(base: string, path: string) {
/**
* 公开 CMS 接口代理
* 将 /api/cms/* 代理到 mp-api无需登录不要求 Authorization
* 将 /api/cms/* 代理到 cms-api无需登录不要求 Authorization
*/
export default defineEventHandler((event) => {
const config = useRuntimeConfig()
const mpApiBase = config.public.mpApiBase || 'https://mp-api.websoft.top'
const mpApiBase = config.public.mpApiBase || 'https://cms-api.websoft.top'
const path = getRouterParam(event, 'path') || ''
const search = getRequestURL(event).search
const target = joinURL(mpApiBase + '/api/cms', path) + search