refactor(assets): migrate to resource domain (#146)

This commit is contained in:
MadDogOwner
2025-08-10 09:56:38 +08:00
committed by GitHub
parent 09006c24f3
commit ad170e203d
4 changed files with 5 additions and 8 deletions

View File

@@ -11,10 +11,7 @@
<link href="/manifest.json" rel="manifest" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="OpenList" />
<link
rel="apple-touch-icon"
href="https://cdn.oplist.org/gh/OpenListTeam/Logo@main/logo.png"
/>
<link rel="apple-touch-icon" href="https://res.oplist.org/logo/logo.png" />
<script
src="https://g.alicdn.com/IMM/office-js/1.1.5/aliyun-web-office-sdk.min.js"
async
@@ -22,7 +19,7 @@
<link
rel="shortcut icon"
type="image/ico"
href="https://cdn.oplist.org/gh/OpenListTeam/Logo@main/logo.svg"
href="https://res.oplist.org/logo/logo.svg"
/>
<title>Loading...</title>
<script>

View File

@@ -5,7 +5,7 @@
"name": "OpenList",
"icons": [
{
"src": "https://cdn.oplist.org/gh/OpenListTeam/Logo@main/logo/512x512.png",
"src": "https://res.oplist.org/logo/512x512.png",
"sizes": "512x512",
"type": "image/png"
}

View File

@@ -40,7 +40,7 @@ const Preview = () => {
cover =
obj.thumb ||
getSetting("audio_cover") ||
"https://cdn.oplist.org/gh/OpenListTeam/Logo@main/logo.svg"
"https://res.oplist.org/logo/logo.svg"
}
const audio = {
name: obj.name,

View File

@@ -5,7 +5,7 @@ import { useT, useManageTitle } from "~/hooks"
const fetchReadme = async () =>
await (
await fetch(
"https://cdn.statically.io/gh/OpenListTeam/OpenList/main/README.md",
"https://raw.githubusercontent.com/OpenListTeam/OpenList/main/README.md",
)
).text()