InvokeAI/invokeai/frontend/src/persistor.ts
psychedelicious 9ad76fe80c Updates code quality tooling and formats codebase
- `eslint` and `prettier` configs
- `husky` to format and lint via pre-commit hook
- `babel-plugin-transform-imports` to treeshake `lodash` and other packages if needed

Lints and formats codebase.
2023-02-08 01:53:34 +13:00

5 lines
128 B
TypeScript

import { store } from 'app/store';
import { persistStore } from 'redux-persist';
export const persistor = persistStore(store);