mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-16 09:11:47 +03:00
15dd20ef48
- Added a simple abstraction of persistent storage class. - Different persistence solutions are provided for web and client. - web: stored in localStorage - client: stored in the application directory as `.json` file - Define persistent app-config schema - Add a new hook that can interactive with persistent-app-config reactively
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { resolve } from 'node:path';
|
|
|
|
import { fileURLToPath } from 'url';
|
|
import { defineConfig } from 'vite';
|
|
import dts from 'vite-plugin-dts';
|
|
|
|
const root = fileURLToPath(new URL('.', import.meta.url));
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
minify: false,
|
|
lib: {
|
|
entry: {
|
|
blocksuite: resolve(root, 'src/blocksuite/index.ts'),
|
|
index: resolve(root, 'src/index.ts'),
|
|
atom: resolve(root, 'src/atom/index.ts'),
|
|
command: resolve(root, 'src/command/index.ts'),
|
|
type: resolve(root, 'src/type.ts'),
|
|
'core/event-emitter': resolve(root, 'src/core/event-emitter.ts'),
|
|
'preload/electron': resolve(root, 'src/preload/electron.ts'),
|
|
'app-config-storage': resolve(root, 'src/app-config-storage.ts'),
|
|
'__internal__/plugin': resolve(root, 'src/__internal__/plugin.ts'),
|
|
},
|
|
formats: ['es', 'cjs'],
|
|
name: 'AffineInfra',
|
|
},
|
|
rollupOptions: {
|
|
external: [
|
|
'electron',
|
|
'async-call-rpc',
|
|
'rxjs',
|
|
'zod',
|
|
'react',
|
|
'yjs',
|
|
'nanoid',
|
|
/^jotai/,
|
|
/^@blocksuite/,
|
|
/^@affine\/templates/,
|
|
],
|
|
},
|
|
},
|
|
plugins: [dts()],
|
|
});
|