DawnLauncher/electron/main/commons/cacheData.ts
2023-11-03 15:17:45 +08:00

13 lines
215 B
TypeScript

import Store from "electron-store";
import { getUserDataPath } from ".";
const cacheStore = new Store({
name: "Cache",
clearInvalidConfig: true,
cwd: getUserDataPath(),
});
export default {
cacheStore,
};