diff --git a/.prettierignore b/.prettierignore index 9c6b791..ac2bbdf 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,3 +4,5 @@ pnpm-lock.yaml LICENSE.md tsconfig.json tsconfig.*.json +.all-contributorsrc +.github/dependabot.yml \ No newline at end of file diff --git a/README.md b/README.md index 2ea1b0e..68231d5 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ > [!tip] -> +> > **本软件使用 `Vue` + `TypeScript` + `JavaScript` 制作,使用 `Node.js` + `Electron` 完善系统级功能并打包。** ## 功能 diff --git a/src/renderer/src/pages/mainWindow.vue b/src/renderer/src/pages/mainWindow.vue index 24843e1..06d1c73 100644 --- a/src/renderer/src/pages/mainWindow.vue +++ b/src/renderer/src/pages/mainWindow.vue @@ -54,7 +54,7 @@ function saveUrl() { async function fetchConfig() { if (remoteUrl.value) { try { - const configResponse = await fetch(remoteUrl.value); + const configResponse = await fetch(remoteUrl.value, { cache: 'no-store' }); if (!configResponse.ok) { throw new Error('无法获取配置文件'); }