Files
JamBuddy/vite.config.js
T
2026-03-05 21:54:32 +00:00

14 lines
273 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: './', // relative paths so Electron can load files from disk
server: {
port: 5173,
},
build: {
outDir: 'dist',
},
})