Remove Act, AutoUpdater, and Book IPC modules alongside associated database logic.
This commit is contained in:
23
vite.config.ts
Normal file
23
vite.config.ts
Normal 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',
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user