mirror of
https://github.com/ente-io/ente.git
synced 2025-06-14 20:41:47 +00:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import { runningInBrowser } from "../../platform";
|
|
|
|
import localForage from "localforage";
|
|
|
|
if (runningInBrowser()) {
|
|
localForage.config({
|
|
name: "ente-files",
|
|
version: 1.0,
|
|
storeName: "files",
|
|
});
|
|
}
|
|
|
|
export default localForage;
|