Remove Act, AutoUpdater, and Book IPC modules alongside associated database logic.

This commit is contained in:
natreex
2026-04-05 19:18:42 -04:00
parent d4765e6576
commit 687c1d582c
99 changed files with 500 additions and 28269 deletions

23
vite.config.ts Normal file
View File

@@ -0,0 +1,23 @@
import {defineConfig} from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
},
},
server: {
port: 4000,
strictPort: true,
},
build: {
outDir: 'out',
emptyOutDir: true,
},
css: {
postcss: './postcss.config.cjs',
},
});