no message
This commit is contained in:
@@ -194,7 +194,7 @@ const client_manifest = {
|
||||
"prefetch": true,
|
||||
"preload": true,
|
||||
"css": [],
|
||||
"file": "error-404.3c11d8b8.js",
|
||||
"file": "error-404.bd63a09a.js",
|
||||
"imports": [
|
||||
"node_modules/nuxt/dist/app/entry.js"
|
||||
],
|
||||
@@ -220,7 +220,7 @@ const client_manifest = {
|
||||
"prefetch": true,
|
||||
"preload": true,
|
||||
"css": [],
|
||||
"file": "error-500.fefb5447.js",
|
||||
"file": "error-500.cf933b8f.js",
|
||||
"imports": [
|
||||
"node_modules/nuxt/dist/app/entry.js"
|
||||
],
|
||||
@@ -280,7 +280,7 @@ const client_manifest = {
|
||||
"node_modules/@nuxt/ui-templates/dist/templates/error-404.vue",
|
||||
"node_modules/@nuxt/ui-templates/dist/templates/error-500.vue"
|
||||
],
|
||||
"file": "entry.745e49d6.js",
|
||||
"file": "entry.5df83aca.js",
|
||||
"isEntry": true,
|
||||
"src": "node_modules/nuxt/dist/app/entry.js",
|
||||
"_globalCSS": true
|
||||
|
@@ -2752,14 +2752,21 @@ const _sfc_main$2 = {
|
||||
}
|
||||
answerList.value[index]["randomEmojis"] = random;
|
||||
};
|
||||
let riposteSubmitState = false;
|
||||
const selectEomji = (code, index, ispop = false, islist = false) => {
|
||||
console.log("riposteSubmitState", riposteSubmitState);
|
||||
if (riposteSubmitState)
|
||||
return;
|
||||
riposteSubmitState = true;
|
||||
let target = answerList.value[index];
|
||||
let ispitch = false;
|
||||
let isindex = target.ripostelist.findIndex((element) => element.item === code);
|
||||
if (isindex >= 0)
|
||||
ispitch = target.ripostelist[isindex].selected;
|
||||
if (ispitch && ispop)
|
||||
if (ispitch && ispop) {
|
||||
riposteSubmitState = false;
|
||||
return;
|
||||
}
|
||||
riposteSubmit(code, target.token).then((res) => {
|
||||
const data = res.data;
|
||||
target.ripostecount = data.count;
|
||||
@@ -2781,6 +2788,7 @@ const _sfc_main$2 = {
|
||||
if (islist)
|
||||
handleRiposteListData(code, data);
|
||||
}).finally(() => {
|
||||
riposteSubmitState = false;
|
||||
});
|
||||
};
|
||||
const handleRiposteListData = (code, data) => {
|
||||
@@ -2874,10 +2882,11 @@ const _sfc_main$2 = {
|
||||
const coinSelectAmountDispose = (amount) => {
|
||||
coinAmount.value = amount;
|
||||
};
|
||||
let postCoinSbmitState = false;
|
||||
const postCoinSbmit = () => {
|
||||
if (postCoinSbmit)
|
||||
if (postCoinSbmitState)
|
||||
return;
|
||||
postCoinSbmit = true;
|
||||
postCoinSbmitState = true;
|
||||
let targetInsert = insert.value;
|
||||
$ajax("/api/operate/coinsubmit", {
|
||||
token: targetInsert.token,
|
||||
@@ -2902,7 +2911,7 @@ const _sfc_main$2 = {
|
||||
closeInsert();
|
||||
handleMsg("success", (res == null ? void 0 : res.message) || "操作成功");
|
||||
}).finally(() => {
|
||||
postCoinSbmit = false;
|
||||
postCoinSbmitState = false;
|
||||
});
|
||||
};
|
||||
const getCoinranking = (token) => {
|
||||
@@ -3153,7 +3162,7 @@ function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $op
|
||||
}
|
||||
_push(`</div></div></div></div><div class="answer-total-amount">共 ${ssrInterpolate($setup.detailsInfo["answers"])} 个回答</div><!--[-->`);
|
||||
ssrRenderList($setup.answerList, (item, index) => {
|
||||
var _a, _b, _c, _d, _e, _f;
|
||||
var _a, _b, _c, _d, _e, _f, _g;
|
||||
_push(`<div class="answer-box-item"><img class="aa"${ssrRenderAttr("src", _imports_24)}>`);
|
||||
if (item["ismyself"] == 1) {
|
||||
_push(`<div class="edit-btn flexcenter"><img class="edit-icon"${ssrRenderAttr("src", _imports_17)}></div>`);
|
||||
@@ -3204,7 +3213,7 @@ function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $op
|
||||
_push(`</div></div></div>`);
|
||||
if (item.tab == "coin") {
|
||||
_push(`<div class="answer-coins"><div class="coins-show flexacenter"><img class="coins-icon"${ssrRenderAttr("src", _imports_26)}><div class="coins-text flexacenter flex1"> 该回答已获 <span class="quantity">${ssrInterpolate(item.coinnum)}</span> 个寄托币 </div><div class="coins-btn flexcenter">给TA投币</div></div>`);
|
||||
if (item.coinnum > 0) {
|
||||
if (((_c = item.ranklist) == null ? void 0 : _c.length) > 0) {
|
||||
_push(`<div class="answer-coins-list"><!--[-->`);
|
||||
ssrRenderList(item.ranklist, (item2, index2) => {
|
||||
_push(`<div class="answer-coins-item flexacenter"><div class="ranking">${ssrInterpolate(index2 + 1)}</div><div class="coins-user flexacenter flex1"><img class="coins-user-img"${ssrRenderAttr("src", item2.avatar)}><div class="coins-user-name flex1">${ssrInterpolate(item2.nickname)}</div></div><div class="bi flexacenter"><div class="bi-amount">${ssrInterpolate(item2.coinnum)}</div> 币 </div></div>`);
|
||||
@@ -3223,9 +3232,9 @@ function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $op
|
||||
_push(`<div class="${ssrRenderClass([{ "pitch": it.selected }, "respond-already-item flexacenter"])}"><div class="code flexacenter">${$setup.jointriposte(it.item)}</div> ${ssrInterpolate(it.num)}</div>`);
|
||||
});
|
||||
_push(`<!--]-->`);
|
||||
if (((_c = item.ripostelist) == null ? void 0 : _c.length) <= 3) {
|
||||
if (((_d = item.ripostelist) == null ? void 0 : _d.length) <= 3) {
|
||||
_push(`<div class="respond-select flexacenter"><!--[-->`);
|
||||
ssrRenderList(item.randomEmojis.slice(0, ((_d = item.ripostelist) == null ? void 0 : _d.length) == 0 ? 8 : 5), (it, i) => {
|
||||
ssrRenderList(item.randomEmojis.slice(0, ((_e = item.ripostelist) == null ? void 0 : _e.length) == 0 ? 8 : 5), (it, i) => {
|
||||
_push(`<div class="respond-select-item">${$setup.jointriposte(it)}</div>`);
|
||||
});
|
||||
_push(`<!--]-->`);
|
||||
@@ -3243,8 +3252,8 @@ function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $op
|
||||
}, null, _parent));
|
||||
}
|
||||
_push(`</div>`);
|
||||
if (((_e = item.ripostecount) == null ? void 0 : _e.user) > 0) {
|
||||
_push(`<div class="respond-list-btn"> 共 <span class="respond-list-btn-amount">${ssrInterpolate((_f = item.ripostecount) == null ? void 0 : _f.user)}</span> 人回应 <img class="respond-list-btn-icon"${ssrRenderAttr("src", _imports_27)}></div>`);
|
||||
if (((_f = item.ripostecount) == null ? void 0 : _f.user) > 0) {
|
||||
_push(`<div class="respond-list-btn"> 共 <span class="respond-list-btn-amount">${ssrInterpolate((_g = item.ripostecount) == null ? void 0 : _g.user)}</span> 人回应 <img class="respond-list-btn-icon"${ssrRenderAttr("src", _imports_27)}></div>`);
|
||||
} else {
|
||||
_push(`<!---->`);
|
||||
}
|
||||
|
@@ -3059,7 +3059,7 @@ function klona(x) {
|
||||
|
||||
const inlineAppConfig = {
|
||||
"nuxt": {
|
||||
"buildId": "e99b1caf-dcc5-45f6-85f7-5c8a079e7d55"
|
||||
"buildId": "62f07d36-665f-43c9-a5ac-05f240df6e58"
|
||||
}
|
||||
};
|
||||
|
||||
@@ -4949,240 +4949,247 @@ const assets = {
|
||||
"/static/add-icon.0b0b5313.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"d67-gajxuGcy6aHIeWAbO0RazX03p90\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 3431,
|
||||
"path": "../public/static/add-icon.0b0b5313.svg"
|
||||
},
|
||||
"/static/arrows-black.688ffbe9.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"b92-THHSA+AHbZYg0KgToCsyvMATyUU\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 2962,
|
||||
"path": "../public/static/arrows-black.688ffbe9.svg"
|
||||
},
|
||||
"/static/arrows-icon.271dd0d3.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"5a0-yAit7q5lcKJMd35iOMMifZv2uno\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 1440,
|
||||
"path": "../public/static/arrows-icon.271dd0d3.svg"
|
||||
},
|
||||
"/static/arrowsRight.59ee73d7.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"5a0-bEJuUuvdKIhwbvsoMwNY6kjRSMA\"",
|
||||
"mtime": "2024-07-29T08:58:10.781Z",
|
||||
"mtime": "2024-07-29T09:29:14.502Z",
|
||||
"size": 1440,
|
||||
"path": "../public/static/arrowsRight.59ee73d7.svg"
|
||||
},
|
||||
"/static/bi-icon.c9939802.png": {
|
||||
"type": "image/png",
|
||||
"etag": "\"424b-ehG5cvCP43YCuZ53n9I8Pp7h9ww\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 16971,
|
||||
"path": "../public/static/bi-icon.c9939802.png"
|
||||
},
|
||||
"/static/close-icon.86743366.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"2d4-QYrulZl33jopLCT37UdJfnzXOVg\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 724,
|
||||
"path": "../public/static/close-icon.86743366.svg"
|
||||
},
|
||||
"/static/collect-icon-colours.6d2ade7f.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"7ab-av9D1DgxgD5cvY5wd30haD7c1q0\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 1963,
|
||||
"path": "../public/static/collect-icon-colours.6d2ade7f.svg"
|
||||
},
|
||||
"/static/comment-icon-gray.2c8779f9.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"816-HEGvNjvS0TeA/3uJweilvZfCqlk\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 2070,
|
||||
"path": "../public/static/comment-icon-gray.2c8779f9.svg"
|
||||
},
|
||||
"/static/cross-gray.2c215ff3.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"851-MWN0jdDmt77COciQqX3rOc+87q4\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 2129,
|
||||
"path": "../public/static/cross-gray.2c215ff3.svg"
|
||||
},
|
||||
"/static/delete-icon.4d386dce.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"17fe-RGKa0+MaUqOqlbPlXlig67fGkaY\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 6142,
|
||||
"path": "../public/static/delete-icon.4d386dce.svg"
|
||||
},
|
||||
"/static/dot-gray.86cdd7b5.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"2af-sBMsuPZbsh28jzlFWO9lVYMVDk8\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 687,
|
||||
"path": "../public/static/dot-gray.86cdd7b5.svg"
|
||||
},
|
||||
"/static/dot-yellow.4b5e135b.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"2af-6L7YsWhGTHBB6NqQztB/l2OFRfE\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 687,
|
||||
"path": "../public/static/dot-yellow.4b5e135b.svg"
|
||||
},
|
||||
"/static/dot.1026a040.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"217-dx6xqUT4D9pCoKc6nr20aXeJQXQ\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 535,
|
||||
"path": "../public/static/dot.1026a040.svg"
|
||||
},
|
||||
"/static/edit-icon-white.29b27582.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"8be-EnEF3CQI46JkMNAXbPf3H6T7pzU\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 2238,
|
||||
"path": "../public/static/edit-icon-white.29b27582.svg"
|
||||
},
|
||||
"/static/empty-icon.24a01ae2.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"d028-Our2UxxUiciRSduORd8JZCt5Prw\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 53288,
|
||||
"path": "../public/static/empty-icon.24a01ae2.svg"
|
||||
},
|
||||
"/static/entry.45bee5ab.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"f008-41haI6qda0WfOTx67XQ9KaXH70U\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 61448,
|
||||
"path": "../public/static/entry.45bee5ab.css"
|
||||
},
|
||||
"/static/entry.745e49d6.js": {
|
||||
"/static/entry.5df83aca.js": {
|
||||
"type": "application/javascript",
|
||||
"etag": "\"3eb0b-fErxA0ySJBKf9ydeRzRhfTU1iqk\"",
|
||||
"mtime": "2024-07-29T08:58:10.783Z",
|
||||
"size": 256779,
|
||||
"path": "../public/static/entry.745e49d6.js"
|
||||
},
|
||||
"/static/error-404.3c11d8b8.js": {
|
||||
"type": "application/javascript",
|
||||
"etag": "\"18de-jvfx/8ZFqn2AKPAllId2SAYSicY\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"size": 6366,
|
||||
"path": "../public/static/error-404.3c11d8b8.js"
|
||||
"etag": "\"3eb73-0kvby2uE/QmYCDTmC86ft2jxoW4\"",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 256883,
|
||||
"path": "../public/static/entry.5df83aca.js"
|
||||
},
|
||||
"/static/error-404.7fc72018.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"e2e-iNt1cqPQ0WDudfCTZVQd31BeRGs\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 3630,
|
||||
"path": "../public/static/error-404.7fc72018.css"
|
||||
},
|
||||
"/static/error-404.bd63a09a.js": {
|
||||
"type": "application/javascript",
|
||||
"etag": "\"18de-0CUQIhUFv8GuMBQCH6nTgL1XHj8\"",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 6366,
|
||||
"path": "../public/static/error-404.bd63a09a.js"
|
||||
},
|
||||
"/static/error-500.c5df6088.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"79e-ByRo+49BgcevWdRjJy3CMx2IA5k\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 1950,
|
||||
"path": "../public/static/error-500.c5df6088.css"
|
||||
},
|
||||
"/static/error-500.fefb5447.js": {
|
||||
"/static/error-500.cf933b8f.js": {
|
||||
"type": "application/javascript",
|
||||
"etag": "\"756-zfXu8JfutmQpB114wNWiSx15uBg\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"etag": "\"756-UsXY0BstpOevQ/jkGkd82wSRGns\"",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 1878,
|
||||
"path": "../public/static/error-500.fefb5447.js"
|
||||
"path": "../public/static/error-500.cf933b8f.js"
|
||||
},
|
||||
"/static/issue-bj.44adad8c.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"926-lK6rrraYIC+9Yxyy0subzOK8XpE\"",
|
||||
"mtime": "2024-07-29T08:58:10.781Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 2342,
|
||||
"path": "../public/static/issue-bj.44adad8c.svg"
|
||||
},
|
||||
"/static/logo.6622f82d.png": {
|
||||
"type": "image/png",
|
||||
"etag": "\"843f-FSXGFGigIHmtzjdcQzuMz/a7E+o\"",
|
||||
"mtime": "2024-07-29T08:58:10.778Z",
|
||||
"mtime": "2024-07-29T09:29:14.499Z",
|
||||
"size": 33855,
|
||||
"path": "../public/static/logo.6622f82d.png"
|
||||
},
|
||||
"/static/menu-icon-gray.d61f02b1.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"6de-kmXhltPHfF4W1gmV7wT4aZCZ6gg\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 1758,
|
||||
"path": "../public/static/menu-icon-gray.d61f02b1.svg"
|
||||
},
|
||||
"/static/plus-sign.4260c2a7.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"90a-9c1O3JagT0aoLSoFWR4iAM/7WuU\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 2314,
|
||||
"path": "../public/static/plus-sign.4260c2a7.svg"
|
||||
},
|
||||
"/static/QRCode-icon.a105d5fc.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"9c1-qGg9jZ5wmHJGzh2A00nHIGWHMh4\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 2497,
|
||||
"path": "../public/static/QRCode-icon.a105d5fc.svg"
|
||||
},
|
||||
"/static/tick-no.179037b3.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"1ea-YISAWqJD56jxoQT8N812fDJfkMw\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 490,
|
||||
"path": "../public/static/tick-no.179037b3.svg"
|
||||
},
|
||||
"/static/tick-option.e092d22f.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"29a-UVjuq3WHs6mhu1KGQ7gQmJH2Bc4\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 666,
|
||||
"path": "../public/static/tick-option.e092d22f.svg"
|
||||
},
|
||||
"/static/tick-orange.233abc69.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"60a-VrP9K+TQp6JbNcrU5k1Dor/Kq/E\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 1546,
|
||||
"path": "../public/static/tick-orange.233abc69.svg"
|
||||
},
|
||||
"/static/title.98892974.png": {
|
||||
"type": "image/png",
|
||||
"etag": "\"1723-0OwkVass/2nFB99dRT4w0sPUvI0\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 5923,
|
||||
"path": "../public/static/title.98892974.png"
|
||||
},
|
||||
"/static/triangle-icon.c39ff2e7.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"446-ylQ81DOJ3joSbsS9atyrW6pZsBY\"",
|
||||
"mtime": "2024-07-29T08:58:10.782Z",
|
||||
"mtime": "2024-07-29T09:29:14.503Z",
|
||||
"size": 1094,
|
||||
"path": "../public/static/triangle-icon.c39ff2e7.svg"
|
||||
},
|
||||
"/static/view-icon.da7fef35.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"f39-5Jwx14wB0jgB0Du25KRZbkEEXvI\"",
|
||||
"mtime": "2024-07-29T08:58:10.780Z",
|
||||
"mtime": "2024-07-29T09:29:14.501Z",
|
||||
"size": 3897,
|
||||
"path": "../public/static/view-icon.da7fef35.svg"
|
||||
},
|
||||
"/static/builds/latest.json": {
|
||||
"type": "application/json",
|
||||
"etag": "\"47-IyLFAy5Td6Vd7dMh9nzrnuoj73w\"",
|
||||
"mtime": "2024-07-29T08:58:12.170Z",
|
||||
"etag": "\"47-RT7nIeQZu+LW8TJYS5oaJcEfeMM\"",
|
||||
"mtime": "2024-07-29T09:29:16.253Z",
|
||||
"size": 71,
|
||||
"path": "../public/static/builds/latest.json"
|
||||
},
|
||||
"/static/builds/meta/e99b1caf-dcc5-45f6-85f7-5c8a079e7d55.json": {
|
||||
"/static/builds/meta/62f07d36-665f-43c9-a5ac-05f240df6e58.json": {
|
||||
"type": "application/json",
|
||||
"etag": "\"8b-EJf+T7uutI52ky7Y7q+LApMXONg\"",
|
||||
"mtime": "2024-07-29T08:58:12.170Z",
|
||||
"etag": "\"8b-HcsYk1C8b+A8huRQ+UNtYUT/O2Y\"",
|
||||
"mtime": "2024-07-29T09:29:16.253Z",
|
||||
"size": 139,
|
||||
"path": "../public/static/builds/meta/e99b1caf-dcc5-45f6-85f7-5c8a079e7d55.json"
|
||||
"path": "../public/static/builds/meta/62f07d36-665f-43c9-a5ac-05f240df6e58.json"
|
||||
},
|
||||
"/static/builds/meta/dev.json": {
|
||||
"type": "application/json",
|
||||
"etag": "\"6a-rQudttpt+fD15I+fyIQHTUiYdI0\"",
|
||||
"mtime": "2024-07-29T09:29:13.408Z",
|
||||
"size": 106,
|
||||
"path": "../public/static/builds/meta/dev.json"
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user