Files
rmtPocketWatcher/electron-app/vite.config.js
HRiggs c708fedca3
All checks were successful
Windows Release / build-windows (push) Successful in 2m46s
Sound and more view controls
2025-12-04 16:09:20 -05:00

17 lines
322 B
JavaScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
root: '.',
base: './', // Use relative paths for Electron
publicDir: 'public',
build: {
outDir: 'dist/renderer',
emptyOutDir: true,
},
server: {
port: 5173,
},
});