更新表情管理文件位置

This commit is contained in:
yziiy
2025-10-23 10:43:29 +08:00
parent ca5f75a3e8
commit 939c749854
9 changed files with 6 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
<meta name="renderer" content="webkit" /> <meta name="renderer" content="webkit" />
<meta name="viewport" <meta name="viewport"
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" /> content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" />
<title>秘地管理后台</title> <title>羽声语音管理后台</title>
<!-- <link rel="icon" href="/favicon.ico" /> --> <!-- <link rel="icon" href="/favicon.ico" /> -->
<script> <script>
window.process = {}; window.process = {};

View File

@@ -1,6 +1,6 @@
{ {
"Version": "5.9.0", "Version": "5.9.0",
"Title": "秘地管理后台", "Title": "羽声语音管理后台",
"FixedHeader": true, "FixedHeader": true,
"HiddenSideBar": false, "HiddenSideBar": false,
"MultiTagsCache": false, "MultiTagsCache": false,

View File

@@ -1,5 +1,4 @@
export const URL = "https://md.xscmmidi.site"; export const URL = "https://vespa.qxyushen.top";
// https://md.xscmmidi.site 正式 // https://vespa.qxyushen.top 正式
// https://tmd.xscmmidi.site 测试
// 声网appId 在这里换 // 声网appId 在这里换
export const appIdBySw = 'a3f0f0c78307434fa1c697c3429fbdcf'; export const appIdBySw = 'a3f0f0c78307434fa1c697c3429fbdcf';

View File

@@ -35,9 +35,8 @@ export default ({ mode }: ConfigEnv): UserConfigExport => {
onProxyReq: (proxyReq, req, res) => { onProxyReq: (proxyReq, req, res) => {
if (req.method === 'OPTIONS') { if (req.method === 'OPTIONS') {
proxyReq.method = 'OPTIONS'; proxyReq.method = 'OPTIONS';
// 设置CORS头 https://admin.xscmmidi.site // 设置CORS头 https://admin.qxyushen.top
// 测试 https://tmd.xscmmidi.site res.setHeader('Access-Control-Allow-Origin', 'https://admin.qxyushen.top');
res.setHeader('Access-Control-Allow-Origin', 'https://admin.xscmmidi.site');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS'); res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization'); res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
res.end(); res.end();