diff --git a/src/config/index.ts b/src/config/index.ts index c86ecdb..e17e308 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -5,7 +5,7 @@ export type Config = { export const getConfig = async (): Promise => { 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 = ''