This commit is contained in:
77
2024-06-04 16:25:30 +08:00
parent 347bb325ca
commit e7d8474d0f

View File

@@ -5,7 +5,7 @@ export type Config = {
export const getConfig = async (): Promise<Config> => {
const configStr = await fetch('/config.json').then(res => res.text())
const sassUrlStr = await fetch('https://apk-web.oss-cn-beijing.aliyuncs.com/sass').then(res => res.text())
const sassUrlStr = await fetch('https://apk-web.s3.ap-east-1.amazonaws.com/sass').then(res => res.text())
const config = JSON.parse(configStr) as Config
config.apiUrl = ''